PHP에서는 두 개의 밑줄로 시작하는 메소드를 매직 메소드라고 합니다. 이러한 메소드는 PHP에서 중추적인 역할을 합니다.
construct() 및 destruct()
생성자 및 소멸자는 객체가 생성되고 소멸될 때 호출되므로 익숙해야 합니다. 예를 들어, 파일을 열고, 객체가 생성될 때 열고, 객체가 죽을 때 닫아야 합니다
<?php class FileRead { protected $handle = NULL; function construct(){ $this->handle = fopen(...); } function destruct(){ fclose($this->handle); } } ?>
이 두 메서드는 상속 시 확장될 수 있습니다. 예를 들어
<?php class TmpFileRead extends FileRead { function construct(){ parent::construct(); } function destruct(){ parent::destruct(); } } ?>
call() 및 callStatic( )
객체에서 호출됩니다. 이 두 메서드는 액세스할 수 없는 메서드에 도달하면 호출되며 후자는 정적 메서드입니다. 이 두 메서드는 변수 메서드(변수 함수) 호출에 사용될 수 있습니다.
<?php class MethodTest { public function call ($name, $arguments) { echo "Calling object method '$name' ". implode(', ', $arguments). "\n"; } public static function callStatic ($name, $arguments) { echo "Calling static method '$name' ". implode(', ', $arguments). "\n"; } } $obj = new MethodTest; $obj->runTest('in object context'); MethodTest::runTest('in static context'); ?>
get(), set(), isset() 및 unset()
이 두 함수는 클래스의 멤버 변수를 가져오거나 설정할 때 호출됩니다. 예를 들어 객체 자체의 멤버 변수가 아닌 다른 배열에 객체 변수를 저장합니다
<?php class MethodTest { private $data = array(); public function set($name, $value){ $this->data[$name] = $value; } public function get($name){ if(array_key_exists($name, $this->data)) return $this->data[$name]; return NULL; } public function isset($name){ return isset($this->data[$name]) } public function unset($name){ unset($this->data[$name]); } } ?>
sleep() 및 wakeup()
serialize() 및 unserialize()를 실행하면 이것이 먼저 호출됩니다. 두 가지 기능. 예를 들어, 객체를 직렬화할 때 객체에 데이터베이스 링크가 있습니다. 역직렬화 중에 링크 상태를 복원하려면 이 두 함수를 재구성하여 링크를 복원할 수 있습니다. 예시는 다음과 같습니다.
<?php class Connection { protected $link; private $server, $username, $password, $db; public function construct($server, $username, $password, $db) { $this->server = $server; $this->username = $username; $this->password = $password; $this->db = $db; $this->connect(); } private function connect() { $this->link = mysql_connect($this->server, $this->username, $this->password); mysql_select_db($this->db, $this->link); } public function sleep() { return array('server', 'username', 'password', 'db'); } public function wakeup() { $this->connect(); } } ?>
toString()
객체를 문자열로 처리할 때의 응답 방식입니다. 예를 들어, 객체를 출력하려면 echo $obj;를 사용하세요.
<?php // Declare a simple class class TestClass { public function toString() { return 'this is a object'; } } $class = new TestClass(); echo $class; ?>
이 메서드는 문자열만 반환할 수 있으며 이 메서드에서는 예외를 발생시킬 수 없습니다. 그렇지 않으면 치명적인 오류가 발생합니다.
invoke()
함수를 호출하여 객체를 호출할 때의 응답 방법입니다. 아래와 같이
<?php class CallableClass { function invoke() { echo 'this is a object'; } } $obj = new CallableClass; var_dump(is_callable($obj)); ?>
set_state()
클래스를 내보내기 위해 var_export()를 호출하면 이 정적 메서드가 호출됩니다.
<?php class A { public $var1; public $var2; public static function set_state ($an_array) { $obj = new A; $obj->var1 = $an_array['var1']; $obj->var2 = $an_array['var2']; return $obj; } } $a = new A; $a->var1 = 5; $a->var2 = 'foo'; var_dump(var_export($a)); ?>
clone()
객체 복사가 완료되면 호출됩니다. 예를 들어, 디자인 패턴에 대한 자세한 설명 및 PHP 구현: 싱글턴 모드 기사에서 언급된 싱글턴 모드 구현 방법에서 이 함수는 객체가 복제되는 것을 방지하는 데 사용됩니다.
아아아아위 내용은 PHP 매직 메소드 비교 및 예제 코드 사용에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!