이 글에서는 주로 문자열 을 배열 으로 분할하기 위한 PHP의 explode 함수 사용 방법을 소개합니다. 이 기능이 필요한 친구는
문자열 분할
을 참조하세요.//분해 기능을 사용하여 문자열을 배열로 분할할 수 있습니다.
코드는 다음과 같습니다.
<?php $source = "hello1,hello2,hello3,hello4,hello5";//按逗号分离字符串 $hello = explode(',',$source); for($index=0;$index<count($hello);$index++) { echo $hello[$index];echo "</br>"; } ?>
//분할 함수는 문자 분할을 수행합니다
// 구분 기호는 슬래시, 점, 가로선이 될 수 있습니다
코드는 다음과 같습니다.
<?php $date = "04/30/1973"; list($month, $day, $year) = split ('[/.-]', $date); echo "Month: $month; Day: $day; Year: $year<br />\n"; ?>
구현할 코드 다중 조건query을 통해 배열
코드는 다음과 같습니다
<?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() 함수를 사용하여 문자열을 배열로 분할하는 샘플 코드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!