php字串操作

2021-09-13 18:07:14 字數 895 閱讀 7921

這篇文章主要介紹了php中利用explode函式分割字串到陣列

分割字串

//利用 explode 函式分割字串到陣列

**如下:

123

4567

8

$source = "hello1,hello2,hello3,hello4,hello5";//按逗號分離字串 

$hello = explode(',',$source);

for($index=0;$index

?>

//split函式進行字元分割

// 分隔符可以是斜線,點,或橫線

**如下:

123

45

<?php 

$date = "04/30/1973";

list($month, $day, $year) = split ('[/.-]', $date);

echo "month: $month; day: $day; year: $year

\n";

?>

通過陣列實現多條件查詢的**

**如下:

123

4567

8910

<?php

$keyword="asp php,jsp";

$keyword=str_replace(" "," ",$keyword);

$keyword=str_replace(" ",",",$keyword);

$keyarr=explode(',',$keyword);

for($index=0;$index

echo $wheresql;

php字串操作

一空格特殊字元 1 string trim string str string charlist 去除字串開始結尾位置的空格和特殊字元 如果沒有第二個引數只去除空格 2 string ltrim string str string charlist 去除字串開始位置的空格和特殊字元 3 string...

PHP 字串操作

可以使用trim 函式去除字串開始位置和結束位置的空格,並把結果字串返回。預設情況下,去除 n r t xob 0和空格。也可以傳入第二個引數提供要過濾的特殊字元。ltrim 只從字串開始處去除,rtrim 只從字串結束處去除。nl2br 函式將會把字串中的換行符替換為 標記。當字串中含有一些有問題...

php字串操作

一空格特殊字元 1 string trim string str string charlist 去除字串開始結尾位置的空格和特殊字元 如果沒有第二個引數只去除空格 2 string ltrim string str string charlist 去除字串開始位置的空格和特殊字元 3 string...