이 글에서는 주로 PHP 문자열의 교체, 분할, 연결 방법을 소개하고, preg_replace, str_replace, preg_split,explode, implode 등의 기능과 사용법을 분석합니다.
1. 정규식 검색을 수행하고 바꾸기
mixed preg_replace ( mixed $pattern , mixed $replacement , mixed $subject [, int $limit = -1 [, int &$count ]] )제목에서 일치하는 패턴을 검색하여 바꾸기로 바꿉니다.
2.
코드는 다음과 같습니다.mixed str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )
문자열 분할 및 연결
1. array preg_split ( string $pattern , string $subject [, int $limit = -1 [ , int $flags = 0 ]] )
주어진 문자열을 정규식으로 구분합니다.
2. 폭발 — 하나의 문자열을 사용하여 다른 문자열을 분할합니다
지침:
arrayexplore ( string $separator , string $string [, int $limit ] )$str = 'one|two|three|four'; // 正数的 limit print_r(explode('|', $str, 2)); // 负数的 limit(自 PHP 5.1 起) print_r(explode('|', $str, -1));위 루틴은 다음을 출력합니다.
Array ( [0] => one [1] => two|three|four ) Array ( [0] => one [1] => two [2] => three )3. string implode(stringglue, arraypieces) ———— 연결된 배열을 string이라고 합니다
$lan=array("a","b","c"); implode("+", $lan);//a+b+c요약: 위는 다음과 같습니다. 이 기사의 전체 내용이 모든 사람의 연구에 도움이 되기를 바랍니다. 관련 권장 사항:
PDO가 PDO 추상화 계층을 사용하여 쿼리 결과를 얻는 방법
PHP가 검색 시 상태 기억을 구현하는 방법의 예 PHP가 이미지 크기 압축을 구현하고 이를 jpg 형식으로 변환하는 방법 예
위 내용은 PHP 문자열의 교체, 분할 및 결합 방법에 대한 자세한 그래픽 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!