这篇文章主要介绍了php字符串分割函数用法,实例分析了php中explode和split函数的使用技巧,非常具有实用价值,需要的朋友可以参考下
本文实例讲述了php字符串分割函数用法。具体分析如下:
php中explode 和 split 函数用来分割字符串。
explode函数语法如下
explode(substring, string)
explode函数通过子字符串进行分割,效率比split要高 split函数语法如下
split(pattern, string)
split通过正则表达式对字符串进行分割,效率相对explode要低,但是功能强大
<?php $list = explode("_","php_strting_function.html"); print("explode() returns:\n"); print_r($list); $list = split("[_.]","php_strting_function.html"); print("split() returns:\n"); print_r($list); ?>
输出结果如下:
explode() returns: Array ( [0] => php [1] => strting [2] => function.html ) split() returns: Array ( [0] => php [1] => strting [2] => function [3] => html )
总结:以上就是本篇文的全部内容,希望能对大家的学习有所帮助。
相关推荐:
Atas ialah kandungan terperinci php字符串分割函数的方法. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!