PHP の explode() 関数 は、string を array に分割するものであることは誰もが知っていると思います。戻り値は文字列からなる配列を返すので、今回は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;
概要:
この記事の学習を通じて、皆さんは、explode関数を使用して文字列を配列に分割する方法をある程度理解できたと思います。あなたの仕事!
関連する推奨事項: phpのexplode()関数とstrtok()関数の違いphpのexplode()関数のコード例
以上が文字列を配列に分割するためにexplode関数を使用したPHPの例の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。