码迷,mamicode.com
首页 > Web开发 > 详细

php -- strstr()字符串匹配函数(备忘)

时间:2014-09-13 11:53:55      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   ar   strong   art   div   sp   

Learn From: http://blog.csdn.net/morley_wang/article/details/7859922

  •  strstr(string,search)

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!

php -- strstr()字符串匹配函数(备忘)

标签:style   blog   http   color   ar   strong   art   div   sp   

原文地址:http://www.cnblogs.com/lmei/p/3969550.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!