PHP分割字串
分割字串
//利用 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 />
“;
?>
通過陣列實現多條件查詢的程式碼
複製程式碼程式碼如下:
<?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;
//利用 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 />
“;
?>
通過陣列實現多條件查詢的程式碼
複製程式碼程式碼如下:
<?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;
相關文章
- 字串-字串分割字串
- c++ 分割字串C++字串
- 分割字串問題字串
- python如何分割字串Python字串
- leetcode 1525 字串的好分割數目(雜湊表,字串分割)LeetCode字串
- PHP——字串PHP字串
- Python的字串分割方法Python字串
- 字串分割 提取數字字串
- 【轉載】Python字串操作之字串分割與組合Python字串
- LeetCode-824. Goat Latin(字串分割)LeetCodeGo字串
- JavaScript split() 分割字串生成陣列JavaScript字串陣列
- PHP比較字串PHP字串
- PHP字串函式PHP字串函式
- 記一次字串分割的工作字串
- 動態規劃——字串分割(Word Break)動態規劃字串
- PHP轉Go系列:字串PHPGo字串
- PHP字串數字相加PHP字串
- 例題讀入字串,包括換行,然後用#f分割字串字串
- C++分割字串,及strtok函式使用C++字串函式
- Python中,如何使用反斜槓 ““分割字串?Python字串
- Perl split字串分割函式用法指南字串函式
- mysql 如何查詢逗號“,”分割的字串MySql字串
- PHP 陣列 & 字串處理PHP陣列字串
- PHP字串函式彙總PHP字串函式
- PHP 開發工程師基礎篇 - PHP 字串PHP工程師字串
- 你可能不知道的字串分割技巧字串
- PHP 學習總結之字串PHP字串
- PHP 陣列排序(複雜字串)PHP陣列排序字串
- 《Redis 使用手冊》- 字串(PHP 版本)Redis字串PHP
- PHP反序列化字串逃逸PHP字串
- Leetcode:1616. 分割兩個字串得到迴文串LeetCode字串
- Golang 字串分割,替換和擷取 strings.SplitGolang字串
- php 擷取中英文混合字串PHP字串
- PHP內建字串函式實現PHP字串函式
- PHP刪除字串中的逗號PHP字串
- PHP經常使用的字串函式PHP字串函式
- Java String類,字串常量池,建立方法,字串的獲取,擷取,轉換,分割。Java字串
- Python科研武器庫 - 字串操作 - 路徑字串分割 os.path.split()、os.path.splitext()Python字串