문자열 분할
//분해 함수를 사용하여 문자열을 배열로 분할합니다
코드는 다음과 같습니다.
<?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 프로그래밍 입문부터 숙련까지
위 내용은 폭발 함수를 사용하여 PHP에서 문자열을 배열로 분할하는 방법을 알아보세요.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!