<?php
$str = "THIS is a beautiful world!";
//$newstr = strstr($str,"is"); //区分大小写的
//stristr 表示 $str里面第一次出现"is"的位置和之后的字符串
//$newstr = stristr($str,"is"); //不区分大小写
$newstr = stristr($str,"is",true); //加第三个参数,true这个是显示"is"之前TH的字符串
//当你使用strstr()并且设置了第三个参数为true or false的时候会报错是因为你的php版本不是5.3
echo $newstr;
//显示:IS is a beautiful world!
echo PHP_VERSION;//系统常量,获取输出PHP的版本号:5.2.6 不是5.3以后的,所以上面的报错
?><?php
$str = "This is a beautiful world!";
$newstr = strchr($str,"is"); //strchr这个函数跟strstr一样,只是没有不能设置第三个参数
//$newstr = strrchr($str,"i"); //上面的从前面开始找:这个从后面开始找!只能找单个字符
echo $newstr;
?>