PHP 中__call()的使用方式

墨辰丷
發布: 2023-03-25 22:50:02
原創
3319 人瀏覽過

這篇文章主要介紹PHP 中__call()的使用方式,有興趣的朋友參考下,希望對大家有幫助。

PHP5 的物件新增了一個專用方法 __call(),這個方法用來監視一個物件中的其它方法。如果你試著呼叫一個物件中不存在或被權限控制中的方法,__call 方法將會被自動呼叫。

例一:__call

<?php  
class foo {  
  function __call($name,$arguments) {  
    print("Did you call me? I&#39;m $name!");  
  }  
} $x = new foo();  
$x->doStuff();  
$x->fancy_stuff();  
?>
登入後複製

這個特殊的方法可以被用來實現JAVA中的「過載(overloading)」的動作,這樣你就可以檢查你的參數並且透過呼叫一個私有的方法來傳遞參數。

範例二:使用 __call 實作「過載」動作

<?php  
class Magic {  
  function __call($name,$arguments) {  
    if($name==&#39;foo&#39;) {  
  if(is_int($arguments[0])) $this->foo_for_int($arguments[0]);  
  if(is_string($arguments[0])) $this->foo_for_string($arguments[0]);  
    }  
  }   private function foo_for_int($x) {  
    print("oh an int!");  
  }   private function foo_for_string($x) {  
    print("oh a string!");  
  }  
} $x = new Magic();  
$x->foo(3);  
$x->foo("3");  
?>
登入後複製

引自:

_call和___callStatic這兩個函數是php類別的預設函數,

__call() 在一個物件的上下文中,如果呼叫的方法不能訪問,它將被觸發

__callStatic() 在一個靜態的上下文中,如果呼叫的方法不能訪問,它將被觸發

實例:

<?php  
abstract class Obj  
{  
protected $property = array();  
  
abstract protected function show();  
  
public function __call($name,$value)  
{  
if(preg_match("/^set([a-z][a-z0-9]+)$/i",$name,$array))  
{  
$this->property[$array[1]] = $value[0];  
return;  
}  
elseif(preg_match("/^get([a-z][a-z0-9]+)$/i",$name,$array))  
{  
return $this->property[$array[1]];  
}  
else  
{  
exit("<br>;Bad function name &#39;$name&#39; ");  
}  
  
}  
}  
  
class User extends Obj  
{  
public function show()  
{  
print ("Username: ".$this->property[&#39;Username&#39;]."<br>;");  
//print ("Username: ".$this->getUsername()."<br>;");  
print ("Sex: ".$this->property[&#39;Sex&#39;]."<br>;");  
print ("Age: ".$this->property[&#39;Age&#39;]."<br>;");  
}  
}  
  
class Car extends Obj  
{  
public function show()  
{  
print ("Model: ".$this->property[&#39;Model&#39;]."<br>;");  
print ("Sum: ".$this->property[&#39;Number&#39;] * $this ->property[&#39;Price&#39;]."<br>;");  
}  
}  
  
$user = new User;  
$user ->setUsername("Anny");  
$user ->setSex("girl");  
$user ->setAge(20);  
$user ->show();  
  
print("<br>;<br>;");  
  
$car = new Car;  
$car ->setModel("BW600");  
$car ->setNumber(5);  
$car ->setPrice(40000);  
$car ->show();  
?>
登入後複製

相關推薦:

PHP開發(17)-callback-readdir-is_dir-foreach-glob- PhpStorm

java-並發-Callable、Future和FutureTask

php-Call to a member function assign() on

#

以上是PHP 中__call()的使用方式的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板