姓氏的第一个字母

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了姓氏的第一个字母相关的知识,希望对你有一定的参考价值。

Get the first char of a lastname in php
  1. <?php
  2. $mystring = 'Test Name';
  3. $findme = ' ';
  4. $pos = strpos($mystring, $findme);
  5.  
  6. // The !== operator can also be used. Using != would not work as expected
  7. // because the position of 'a' is 0. The statement (0 != false) evaluates
  8. // to false.
  9. if ($pos !== false) {
  10. $ln = substr($mystring, $pos, 2);
  11. echo "Last name starts with ". trim($ln, " ")."";
  12.  
  13. } else {
  14. echo "The string '$findme' was not found in the string '$mystring'";
  15. }
  16. ?>

以上是关于姓氏的第一个字母的主要内容,如果未能解决你的问题,请参考以下文章

想在 django 模板中显示姓氏的第一个字符

如何将个人资料图像设置为名字和姓氏的首字母?

在 C++ 中使用 toupper 函数的问题

Oracle中的SQL语句的题目,求解答啊

在MVC辅助方法中打印每个单词的第一个字母[重复]

为啥此代码片段返回意外结果?