> 백엔드 개발 > PHP 튜토리얼 > PHP에서 체인 작업을 구현하는 세 가지 방법

PHP에서 체인 작업을 구현하는 세 가지 방법

高洛峰
풀어 주다: 2023-03-05 16:04:01
원래의
1217명이 탐색했습니다.

PHP에는 많은 문자열 함수가 있습니다. 예를 들어 먼저 문자열 끝의 공백을 필터링한 다음 해당 길이를 찾아야 합니다.

strlen(trim($str))
로그인 후 복사
로그인 후 복사

예를 들어, js에서와 유사한 체인 작업을 구현하고 싶다면 다음과 같이 어떻게 작성해야 합니까?

$str->trim()->strlen()
로그인 후 복사
로그인 후 복사

구현 방법은 다음 세 가지입니다.

방법 1. 마법 함수__callcall_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
로그인 후 복사
로그인 후 복사

방법 2. 마법 함수 __callcall_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은 모두 동적으로 함수를 호출하는 방법입니다. 차이점은 매개변수가 전달되는 방식에 있습니다.

방법 3: __call

을 구현하기 위해 마법 함수

를 사용하지 마세요. _call()trim() 함수로 수정하세요.

public function trim($t)
{
    $this->value = trim($this->value, $t);
    return $this;
}
로그인 후 복사
로그인 후 복사

요점은 return입니다. $ 후자의 함수 호출을 용이하게 하기 위한 이 포인터입니다.


PHP에는 많은 문자열 함수가 있습니다. 예를 들어 문자열 끝의 공백을 먼저 필터링한 다음 해당 길이를 찾아야 합니다. 글쓰기는

strlen(trim($str))
로그인 후 복사
로그인 후 복사

예를 들어 js에서와 비슷한 연쇄 연산을 구현하고 싶다면 다음과 같이 어떻게 작성해야 할까요?

$str->trim()->strlen()
로그인 후 복사
로그인 후 복사

구현 방법은 다음 세 가지입니다.

방법 1. 마법 함수__callcall_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
로그인 후 복사
로그인 후 복사

방법 2. 마법 함수 __callcall_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는 모두 동적으로 함수를 호출하는 방법입니다. 차이점은 매개변수가 전달되는 방식에 있습니다.

방법 3: __call

을 구현하기 위해 마법 함수

를 사용하지 마세요. _call()trim() 함수로 수정하세요.

public function trim($t)
{
    $this->value = trim($this->value, $t);
    return $this;
}
로그인 후 복사
로그인 후 복사

요점은 return입니다. $ 후자의 함수 호출을 용이하게 하기 위한 이 포인터입니다.

체인 연산을 구현하는 PHP 세 가지 방법을 더 알아보려면 PHP 중국어 웹사이트에서 관련 기사를 주목하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿