PHP에는 많은 문자열 함수가 있습니다. 예를 들어 먼저 문자열 끝의 공백을 필터링한 다음 해당 길이를 찾아야 합니다.
strlen(trim($str))
예를 들어, js에서와 유사한 체인 작업을 구현하고 싶다면 다음과 같이 어떻게 작성해야 합니까?
$str->trim()->strlen()
구현 방법은 다음 세 가지입니다.
__call
를 call_user_func
와 결합하여 구현 생각: 먼저 문자열 클래스 StringHelper
를 정의하면 생성자가 값을 직접 할당한 다음 호출을 처리하기 위해 호출된 매직 함수 trim()
에서 strlen()
를 사용하여 체인에서 __call()
및 call_user_func
함수를 호출합니다.
<?php class StringHelper { private $value; function __construct($value) { $this->value = $value; } function __call($function, $args){ $this->value = call_user_func($function, $this->value, $args[0]); return $this; } function strlen() { return strlen($this->value); } } $str = new StringHelper(" sd f 0"); echo $str->trim('0')->strlen();
터미널 실행 스크립트:
php test.php 8
__call
를 call_user_func_array
와 결합하여 <?php class StringHelper { private $value; function __construct($value) { $this->value = $value; } function __call($function, $args){ array_unshift($args, $this->value); $this->value = call_user_func_array($function, $args); return $this; } function strlen() { return strlen($this->value); } } $str = new StringHelper(" sd f 0"); echo $str->trim('0')->strlen();
구현 지침:
array_unshift(array,value1,value2,value3...)
array_unshift()
함수는 배열에 새 요소를 삽입하는 데 사용됩니다. 새 배열의 값은 배열의 시작 부분에 삽입됩니다.
call_user_func()
과 call_user_func_array
은 모두 동적으로 함수를 호출하는 방법입니다. 차이점은 매개변수가 전달되는 방식에 있습니다.
__call
를 사용하지 마세요. _call()
를 trim()
함수로 수정하세요.
public function trim($t) { $this->value = trim($this->value, $t); return $this; }
요점은 return입니다. $ 후자의 함수 호출을 용이하게 하기 위한 이 포인터입니다.
PHP에는 많은 문자열 함수가 있습니다. 예를 들어 문자열 끝의 공백을 먼저 필터링한 다음 해당 길이를 찾아야 합니다. 글쓰기는
strlen(trim($str))
예를 들어 js에서와 비슷한 연쇄 연산을 구현하고 싶다면 다음과 같이 어떻게 작성해야 할까요?
$str->trim()->strlen()
구현 방법은 다음 세 가지입니다.
__call
를 call_user_func
와 결합하여 구현 생각: 먼저 문자열 클래스 StringHelper
를 정의하면 생성자가 값을 직접 할당한 다음 호출을 처리하기 위해 호출된 매직 함수 trim()
에서 strlen()
를 사용하여 체인에서 __call()
및 call_user_func
함수를 호출합니다.
<?php class StringHelper { private $value; function __construct($value) { $this->value = $value; } function __call($function, $args){ $this->value = call_user_func($function, $this->value, $args[0]); return $this; } function strlen() { return strlen($this->value); } } $str = new StringHelper(" sd f 0"); echo $str->trim('0')->strlen();
터미널 실행 스크립트:
php test.php 8
__call
를 call_user_func_array
와 결합하여 <?php class StringHelper { private $value; function __construct($value) { $this->value = $value; } function __call($function, $args){ array_unshift($args, $this->value); $this->value = call_user_func_array($function, $args); return $this; } function strlen() { return strlen($this->value); } } $str = new StringHelper(" sd f 0"); echo $str->trim('0')->strlen();
구현 지침:
array_unshift(array,value1,value2,value3...)
array_unshift()
함수는 배열에 새로운 요소를 삽입하는 데 사용됩니다. 새 배열의 값은 배열의 시작 부분에 삽입됩니다.
call_user_func()
과 call_user_func_array
는 모두 동적으로 함수를 호출하는 방법입니다. 차이점은 매개변수가 전달되는 방식에 있습니다.
__call
를 사용하지 마세요. _call()
를 trim()
함수로 수정하세요.
public function trim($t) { $this->value = trim($this->value, $t); return $this; }
요점은 return입니다. $ 후자의 함수 호출을 용이하게 하기 위한 이 포인터입니다.
체인 연산을 구현하는 PHP 세 가지 방법을 더 알아보려면 PHP 중국어 웹사이트에서 관련 기사를 주목하세요!