php取出字符串的前几位的方法:可以利用substr()函数来实现,如【substr(“Hello world”,10)】。substr()函数可以返回字符串的提取部分,如果失败则返回false,或者返回一个空字符串。
substr() 函数可以返回字符串的提取部分,如果失败则返回 FALSE,或者返回一个空字符串。
(视频教程推荐:php视频教程)
语法:substr(string,start,length)
如果 start 参数是负数且 length 小于或等于 start,则 length 为 0。
举例:<?php
echo substr(“Hello world”,10).”
“;
echo substr(“Hello world”,1).”
“;
echo substr(“Hello world”,3).”
“;
echo substr(“Hello world”,7).”
“;
echo substr(“Hello world”,-1).”
“;
echo substr(“Hello world”,-10).”
“;
echo substr(“Hello world”,-8).”
“;
echo substr(“Hello world”,-4).”
“;
?>
相关推荐:php培训