|
PHP5中文手册
mb_strstr(PHP 5 >= 5.2.0) mb_strstr — Finds first occurrence of a string within another 说明
string mb_strstr
( string $haystack
, string $needle
[, bool $part
[, string $encoding
]] )
mb_strstr() finds the first occurrence of needle in haystack and returns the portion of haystack . If needle is not found, it returns FALSE. 参数
返回值Returns the portion of haystack , or FALSE if needle is not found. |