宠物网站设计模块,精准信息预测,国内最近新闻,网站备案难吗?php $str THIS is a beautiful world!;//$newstr strstr($str,is); //区分大小写的//stristr 表示 $str里面第一次出现is的位置和之后的字符串//$newstr stristr($str,is); //不区分大小写$newstr stristr($str,?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.3echo $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;?