成都创新互联网站制作重庆分公司

PHP中substr函数如何使用?

PHP中substr函数的作用是返回字符串的一部分,其语法为“substr(string,start,length)”,其参数string表示返回其中一部分的字符串,参数start表示在字符串的何处开始,参数length表示截取长度。

创新互联公司专业为企业提供南湖网站建设、南湖做网站、南湖网站设计、南湖网站制作等企业网站建设、网页设计与制作、南湖企业网站模板建站服务,十年南湖做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。

使用示例

";
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)."
"; ?>
";
echo substr("Hello world",1,8)."
"; echo substr("Hello world",0,5)."
"; echo substr("Hello world",6,6)."
"; echo substr("Hello world",0,-1)."
"; echo substr("Hello world",-10,-2)."
"; echo substr("Hello world",0,-6)."
"; echo substr("Hello world",-2-3)."
"; ?>

推荐教程:《PHP》
当前题目:PHP中substr函数如何使用?
标题路径:http://cxhlcq.com/article/cpppec.html

其他资讯

在线咨询

微信咨询

电话咨询

028-86922220(工作日)

18980820575(7×24)

提交需求

返回顶部