PHP에는 많은 문자열 함수가 있습니다. 예를 들어 먼저 문자열 끝의 공백을 필터링한 다음 그 길이를 알아내야 합니다.
strlen(trim($str))
$str->trim()->strlen()
방법 1. call_user_func와 결합된 마법 함수 __call을 사용하여 을 달성합니다.
아이디어: 먼저 문자열 클래스 StringHelper를 정의하고 생성자가 값을 직접 할당한 다음 체인에서 Trim() 및 strlen() 함수를 호출하고 호출된 매직 함수에서 call_user_func를 사용하여 호출 관계를 처리합니다. __call( ) , 구현은 다음과 같습니다:<?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
방법 2, call_user_func_array와 결합된 마법 함수 __call을 사용하여 #🎜🎜을 달성합니다. # <?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는 모두 함수를 동적으로 호출하는 방법입니다. 차이점은 매개변수가 전달되는 방식에 있습니다.
방법 3,_call()을 Trim() 함수로 수정하기만 하면 됩니다. #🎜🎜 #
public function trim($t) { $this->value = trim($this->value, $t); return $this; }
PHP 비디오 튜토리얼
"위 내용은 PHP에서 체인 작업을 구현하는 세 가지 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!