Home
last modified time | relevance | path

Searched refs:__call (Results 1 – 25 of 79) sorted by last modified time

1234

/PHP-5.5/tests/classes/
H A D__call_001.phpt2 ZE2 __call()
11 function __call($m, $a) {
H A D__call_002.phpt2 ZE2 __call() signature check
9 function __call() {
15 Fatal error: Method Test::__call() must take exactly 2 arguments in %s__call_002.php on line %d
H A D__call_003.phpt2 Force pass-by-reference to __call
7 function __call($name, $values)
H A D__call_004.phpt2 When __call() is invoked via ::, ensure current scope's __call() is favoured over the specified cla…
6 function __call($strMethod, $arrArgs) {
13 function __call($strMethod, $arrArgs) {
30 In B::__call(test1, array(1,a))
33 In B::__call(test2, array(1,a))
36 In B::__call(test3, array(1,a))
39 In B::__call(test4, array(1,a))
H A D__call_005.phpt2 When __call() is invoked via ::, ensure private implementation of __call() in superclass is accesse…
6 private function __call($strMethod, $arrArgs) {
25 Warning: The magic method __call() must have public visibility and cannot be static in %s__call_005…
26 In A::__call(test1, array(1,a))
29 In A::__call(test2, array(1,a))
32 In A::__call(test3, array(1,a))
35 In A::__call(test4, array(1,a))
H A D__call_006.phpt2 Ensure exceptions are handled properly when thrown in __call.
6 function __call($strMethod, $arrArgs) {
24 echo "---> Invoke __call via simple method call.\n";
31 echo "\n\n---> Invoke __call via scope resolution operator within instance.\n";
38 echo "\n\n---> Invoke __call via scope resolution operator within child instance.\n";
46 echo "\n\n---> Invoke __call via callback.\n";
55 ---> Invoke __call via simple method call.
61 ---> Invoke __call via scope resolution operator within instance.
67 ---> Invoke __call via scope resolution operator within child instance.
73 ---> Invoke __call via callback.
H A D__call_007.phpt2 Ensure exceptions are handled properly when thrown in a statically declared __call.
6 static function __call($strMethod, $arrArgs) {
24 echo "---> Invoke __call via simple method call.\n";
31 echo "\n\n---> Invoke __call via scope resolution operator within instance.\n";
38 echo "\n\n---> Invoke __call via scope resolution operator within child instance.\n";
46 echo "\n\n---> Invoke __call via callback.\n";
55 Warning: The magic method __call() must have public visibility and cannot be static in %s on line 3
56 ---> Invoke __call via simple method call.
61 ---> Invoke __call via scope resolution operator within instance.
66 ---> Invoke __call via scope resolution operator within child instance.
[all …]
/PHP-5.5/ext/standard/tests/strings/
H A Dlcfirst.phpt62 public function __call($m, $v) {
/PHP-5.5/ext/standard/tests/general_functions/
H A D010.phpt2 register_shutdown_function() & __call
9 function __call($name=null, $args=null) {
14 var_dump(register_shutdown_function(array("test","__call")));
19 Fatal error: Non-static method test::__call() cannot be called statically in %s on line %d
/PHP-5.5/ext/spl/tests/
H A Dspl_007.phpt2 SPL: iterator_apply() with callback using __call()
7 public function __call($name, $params) {
/PHP-5.5/ext/spl/internal/
H A Diteratoriterator.inc110 function __call($func, $params)
H A Dlimititerator.inc128 function __call($func, $params)
H A Dappenditerator.inc116 function __call($func, $params)
H A Dcachingiterator.inc122 function __call($func, $params)
H A Dfilteriterator.inc121 function __call($func, $params)
H A Drecursivetreeiterator.inc126 function __call($func, $params)
/PHP-5.5/ext/spl/examples/
H A Ddirectorytreeiterator.inc48 function __call($func, $params)
H A Dsearchiterator.inc52 function __call($func, $params)
/PHP-5.5/ext/soap/
H A Dsoap.c219 PHP_METHOD(SoapClient, __call);
419 PHP_ME(SoapClient, __call, arginfo_soapclient___call, 0)
2855 PHP_METHOD(SoapClient, __call) argument
/PHP-5.5/ext/soap/tests/bugs/
H A Dbug31755.phpt12 $response= $client->__call('function', array(), null, $header);
/PHP-5.5/ext/reflection/tests/
H A DReflectionMethod_getModifiers_basic.phpt37 public function __call($a, $b) {}
113 Modifiers for method TestClass::__call():
181 Modifiers for method TestClass::__call():
/PHP-5.5/ext/phar/phar/
H A Ddirectorytreeiterator.inc48 function __call($func, $params)
/PHP-5.5/ext/pdo_sqlite/tests/
H A Dbug46542.phpt2 Bug #46542 Extending PDO class with a __call() function
10 { function __call($m, $p) {print __CLASS__."::$m\n";} }
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_subclass.phpt38 public function __call($method, $args) {
39 print "__call(".var_export($method,true).", ".var_export($args, true).")\n";
102 __call('intercept_call', array (
H A Dpdo_mysql_stmt_fetch_serialize.phpt41 public function __call($method, $params) {

Completed in 36 milliseconds

1234