PHP에서는 배열과 문자열을 변환할 수 있는 방법을 소개합니다. 필요한 친구들이 참고할 수 있습니다.
방법 소개:
function implode ($glue = "", array $pieces) {}
주로 두 개의 매개변수가 있습니다.
하나는 커넥터(glue: 접착제의 의미)이고 기본값은 빈 문자열입니다.
다른 하나는
$test = array("hello","world","php"); echo implode("-",$test);
를 사용합니다. 결과:
hello-world-php
K-V 형식의 배열이라면 어떨까요?
$test = array("h"=>"hello","w"=>"world","p"=>"php"); echo implode("-",$test);
결과는 여전히
hello-world-php
이며 이는 여전히 값에서만 작동함을 나타냅니다.
function explode ($delimiter, $string, $limit = null) {}
explode(폭발, 어쩌면 문자열이 폭발할까요?)
매개변수 설명:
delimiter, delimiter
limit
문서화 :
limit가 양수로 설정된 경우 반환된 배열에는 최대 제한 요소가 포함되며 마지막 요소에는 나머지 문자열이 포함됩니다.
개인적인 이해:
limit는 분할 후 남은 문자열입니다. 물론 1이면 문자열 자체입니다(실험됨).
코드 데모:
$str="hello-world-php"; $result = explode("-", $str); var_dump($result); $result = explode("-", $str,2); var_dump($result);
출력 결과 :
array(3) { [0]=> string(5) "hello" [1]=> string(5) "world" [2]=> string(3) "php" } array(2) { [0]=> string(5) "hello" [1]=> string(9) "world-php" }
문자열을 나눌 필요는 없지만 각 문자를 빼내야 합니다. 즉, 하나씩 읽어야 합니다.
원본:
** * Convert a string to an array * @link http://php.net/manual/en/function.str-split.php * @param string $string <p> * The input string. * </p> * @param int $split_length [optional] <p> * Maximum length of the chunk. * </p> * @return array If the optional split_length parameter is * specified, the returned array will be broken down into chunks with each * being split_length in length, otherwise each chunk * will be one character in length. * </p> * <p> * false is returned if split_length is less than 1. * If the split_length length exceeds the length of * string, the entire string is returned as the first * (and only) array element. * @since 5.0 */ function str_split ($string, $split_length = 1) {}
부분번역:
배열 선택적 분할_길이 매개변수가 지정된 경우 반환된 배열은 분할_길이 길이의 청크로 분할됩니다. 그렇지 않으면 각 청크는 길이가 한 문자가 됩니다.
문자열을 배열로 변환합니다. 이것은 단지 문자열을 배열로 변환하는 것 아닌가요? 사용법에 대해서는 말할 것도 없습니다.
이제 시도해 보고 싶습니다. 길이가 5개인 문자열이라면 다음을 읽어보세요. 두 자리로 되어 있는데, 두 자리 미만일 경우 마지막 자리를 그대로 유지해야 할까요?
물론 데이터 무결성을 위해 그대로 유지해야 할 것 같습니다.
$str = "hello"; var_dump(str_split($str,2));
결과는 예상했던 것과 같습니다
array(3) { [0]=> string(2) "he" [1]=> string(2) "ll" [2]=> string(1) "o" }
추천 학습: php 비디오 튜토리얼
위 내용은 PHP에서 배열과 문자열을 변환하는 방법(필독)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!