‘壹’ php中利用explode函数分割字符串到数组
分割字符串
//利用
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;
‘贰’ php用explode,可以提供多个字符作为分割符来进行分割数组吗
explode — 使用一个字符串分割另一个字符串, 它的函数原型如下:
array explode ( string $delimiter , string $string [, int $limit ] )
因此,它不可以提供多个字符作为分割符来进行分割数组。
如果要使用多个字符串作为分割字符,可以用另外一个函数 preg_split。
通过一个正则表达式分隔字符串, 它的函数原型如下:
array preg_split ( string $pattern , string $subject [, int $limit = -1 [, int $flags = 0 ]] )
举例:
<?php
$str="aa--bb++cc**dd";
$arr=preg_split('/[-+*]+/is',$str);
echo"<pre>";
print_r($arr);
echo"</pre>";
它的输出结果是:
Array
(
[0] => aa
[1] => bb
[2] => cc
[3] => dd
);