php字符串分割函数用法实例

yipeiwu_com5年前PHP代码库

本文实例讲述了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
)

希望本文所述对大家的php程序设计有所帮助。

相关文章

php关联数组与索引数组及其显示方法

数据 username password test 123456 关联数组: mysql_fetch_assoc() array([username]=>'test...

php cURL和Rolling cURL并发方式比较

php cURL和Rolling cURL并发方式比较

在实际项目或者自己编写小工具(比如新闻聚合,商品价格监控,比价)的过程中, 通常需要从第3方网站或者API接口获取数据, 在需要处理1个URL队列时, 为了提高性能, 可以采用cURL提...

PHP常用函数小技巧

1. 返回文件扩展名 function getformat($file) { $ext=strrchr($file,"."); $format=strtolower($ext); ret...

jq的get传参数在utf-8中乱码问题的解决php版

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//E...

php IP及IP段进行访问限制的代码

192.168.1.1 单个IP 192.168.1.* 这样代理 192.168.1.1-192.168.1-255 192.158.1.2-20 这样是代表192.158.1.2-1...