时间:2021-05-26
分割字符串
//利用 explode 函数分割字符串到数组
复制代码 代码如下:
<?php
$source = "hello1,hello2,hello3,hello4,hello5";//按逗号分离字符串
$hello = explode(',',$source);
for($index=0;$index<count($hello);$index++)
{
echo $hello[$index];echo "</br>";
}
?>
//split函数进行字符分割
// 分隔符可以是斜线,点,或横线
复制代码 代码如下:
<?php
$date = "04/30/1973";
list($month, $day, $year) = split ('[/.-]', $date);
echo "Month: $month; Day: $day; Year: $year<br />\n";
?>
通过数组实现多条件查询的代码
复制代码 代码如下:
<?php
$keyword="asp php,jsp";
$keyword=str_replace(" "," ",$keyword);
$keyword=str_replace(" ",",",$keyword);
$keyarr=explode(',',$keyword);
for($index=0;$index<count($keyarr);$index++)
{
$whereSql .= " And (arc.title like '%$keyarr[$index]%' Or arc.keywords like '%$keyarr[$index]%') ";
}
echo $whereSql;
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了php字符串分割函数用法。分享给大家供大家参考。具体分析如下:php中explode和split函数用来分割字符串。explode函数语法如下ex
php将字符串转换为数组在php中通过使用“explode函数”,将字符串转换为数组,该函数的用法为“explode(delimiter,string)”,其参
explode()函数把字符串分割为数组。语法explode(separator,string,limit)参数描述separator必需。规定在哪里分割字符串
explode()函数介绍explode()函数可以把字符串分割为数组。语法:explode(separator,string,limit)。参数描述separ
复制代码代码如下:explode定义和用法explode()函数把字符串分割为数组。语法explode(separator,string,limit)参数描述s