标签:style blog http color ar strong art div sp
Learn From: http://blog.csdn.net/morley_wang/article/details/7859922
strstr() 函数搜索一个字符串在另一个字符串中的第一次出现。
该函数返回字符串的其余部分(从匹配点)。如果未找到所搜索的字符串,则返回 false。
string 必需。规定被搜索的字符串。
search 必需。规定所搜索的字符串。如果该参数是数字,则搜索匹配数字 ASCII 值的字符。
Example 1:
<?php echo strstr("Hello world!","world"); ?>
输出:world!
Example 2:
搜索 "o" 的 ASCII 值所代表的字符:
<?php echo strstr("Hello world!",111); ?>
输出:o world!
标签:style blog http color ar strong art div sp
原文地址:http://www.cnblogs.com/lmei/p/3969550.html