Home  >  Article  >  Backend Development  >  怎么获得:后面的字符

怎么获得:后面的字符

WBOY
WBOYOriginal
2016-06-13 13:52:48926browse

如何获得:后面的字符?
例如   有一个字符   'aaa   :   bbb '  
使用什么函数可以获得   'bbb '   ?

------解决方案--------------------
$str = 'aaa : bbb ';
$mystr = substr($str,strpos($str, ': ')+1);

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn