Home
last modified time | relevance | path

Searched refs:called (Results 1 – 25 of 338) sorted by relevance

12345678910>>...14

/PHP-8.1/ext/standard/tests/serialize/
H A D__serialize_003.phpt8 echo "__sleep() called\n";
12 echo "__wakeup() called\n";
16 echo "__serialize() called\n";
21 echo "__unserialize() called\n";
26 echo "serialize() called\n";
31 echo "unserialize() called\n";
44 __serialize() called
46 __unserialize() called
53 unserialize() called
/PHP-8.1/Zend/tests/type_declarations/
H A Dscalar_strict.phpt63 *** Caught {closure}(): Argument #1 ($i) must be of type int, string given, called in %s on line %d
66 *** Caught {closure}(): Argument #1 ($i) must be of type int, float given, called in %s on line %d
69 *** Caught {closure}(): Argument #1 ($i) must be of type int, float given, called in %s on line %d
72 *** Caught {closure}(): Argument #1 ($i) must be of type int, string given, called in %s on line %d
75 *** Caught {closure}(): Argument #1 ($i) must be of type int, string given, called in %s on line %d
78 *** Caught {closure}(): Argument #1 ($i) must be of type int, string given, called in %s on line %d
84 *** Caught {closure}(): Argument #1 ($i) must be of type int, float given, called in %s on line %d
87 *** Caught {closure}(): Argument #1 ($i) must be of type int, bool given, called in %s on line %d
90 *** Caught {closure}(): Argument #1 ($i) must be of type int, bool given, called in %s on line %d
93 *** Caught {closure}(): Argument #1 ($i) must be of type int, null given, called in %s on line %d
[all …]
H A Dscalar_strict_64bit.phpt63 *** Caught {closure}(): Argument #1 ($i) must be of type int, string given, called in %s on line %d
66 *** Caught {closure}(): Argument #1 ($i) must be of type int, float given, called in %s on line %d
69 *** Caught {closure}(): Argument #1 ($i) must be of type int, float given, called in %s on line %d
72 *** Caught {closure}(): Argument #1 ($i) must be of type int, string given, called in %s on line %d
75 *** Caught {closure}(): Argument #1 ($i) must be of type int, string given, called in %s on line %d
78 *** Caught {closure}(): Argument #1 ($i) must be of type int, string given, called in %s on line %d
84 *** Caught {closure}(): Argument #1 ($i) must be of type int, float given, called in %s on line %d
87 *** Caught {closure}(): Argument #1 ($i) must be of type int, bool given, called in %s on line %d
90 *** Caught {closure}(): Argument #1 ($i) must be of type int, bool given, called in %s on line %d
93 *** Caught {closure}(): Argument #1 ($i) must be of type int, null given, called in %s on line %d
[all …]
H A Dscalar_strict_basic.phpt60 *** Caught {closure}(): Argument #1 ($i) must be of type int, float given, called in %s on line %d
63 *** Caught {closure}(): Argument #1 ($i) must be of type int, string given, called in %s on line %d
66 *** Caught {closure}(): Argument #1 ($i) must be of type int, bool given, called in %s on line %d
69 *** Caught {closure}(): Argument #1 ($i) must be of type int, bool given, called in %s on line %d
72 *** Caught {closure}(): Argument #1 ($i) must be of type int, null given, called in %s on line %d
75 *** Caught {closure}(): Argument #1 ($i) must be of type int, array given, called in %s on line %d
95 *** Caught {closure}(): Argument #1 ($f) must be of type float, bool given, called in %s on line %d
98 *** Caught {closure}(): Argument #1 ($f) must be of type float, bool given, called in %s on line %d
101 *** Caught {closure}(): Argument #1 ($f) must be of type float, null given, called in %s on line %d
115 *** Caught {closure}(): Argument #1 ($s) must be of type string, int given, called in %s on line %d
[all …]
H A Dscalar_basic.phpt79 *** Caught {closure}(): Argument #1 ($i) must be of type int, string given, called in %s on line %d
82 *** Caught {closure}(): Argument #1 ($i) must be of type int, string given, called in %s on line %d
85 *** Caught {closure}(): Argument #1 ($i) must be of type int, string given, called in %s on line %d
91 *** Caught {closure}(): Argument #1 ($i) must be of type int, float given, called in %s on line %d
100 *** Caught {closure}(): Argument #1 ($i) must be of type int, null given, called in %s on line %d
104 *** Caught {closure}(): Argument #1 ($i) must be of type int, array given, called in %s on line %d
108 *** Caught {closure}(): Argument #1 ($i) must be of type int, stdClass given, called in %s on line …
115 *** Caught {closure}(): Argument #1 ($i) must be of type int, resource given, called in %s on line …
153 *** Caught {closure}(): Argument #1 ($f) must be of type float, null given, called in %s on line %d
157 *** Caught {closure}(): Argument #1 ($f) must be of type float, array given, called in %s on line %d
[all …]
/PHP-8.1/Zend/tests/
H A Dindirect_call_from_constant.phpt10 echo "Method called!\n";
24 Method called!
25 Method called!
26 Method called!
27 Method called!
H A Dbug22725.phpt7 echo "Foo::aPrivateMethod() called.\n";
11 echo "Foo::aProtectedMethod() called.\n";
18 echo "Bar::aPublicMethod() called.\n";
27 Bar::aPublicMethod() called.
28 Foo::aProtectedMethod() called.
29 Foo::aPrivateMethod() called.
H A Dfr47160.phpt20 printf("%s called (%s)!\n", __METHOD__, $f);
26 printf("%s called (%s)!\n", __METHOD__, $f);
32 printf("%s called (%s)!\n", __METHOD__, $f);
117 Magic::__call called (foo)!
118 Magic::__call called (foo)!
120 Magic2::__callStatic called (foo)!
121 Magic2::__callStatic called (foo)!
123 Magic3::__callStatic called (foo)!
124 Magic3::__callStatic called (foo)!
126 Magic3::__call called (foo)!
[all …]
H A Dbug48770.phpt8 echo "A::func called\n";
14 echo "B::func called\n";
24 echo "C::func called\n";
30 $c->callFuncInParent('Which function will be called??');
34 B::func called
H A Dindirect_call_string_001.phpt11 echo "Static method called!\n";
16 printf("Static method called with args: %s, %s, %s\n", $arg1, $arg2, $arg3);
42 Static method called!
43 Static method called!
44 Static method called with args: arg1, arg2, arg3
45 Static method called with args: arg1, arg2, arg3
H A Dcall_static.phpt9 echo $fname, '() called with ', count($args), " arguments\n";
18 Two() called with 2 arguments
19 Three() called with 3 arguments
20 Four() called with 4 arguments
H A Dbug68475.phpt9 echo "Static method called!\n";
14 printf("Static method called with args: %s, %s, %s\n", $arg1, $arg2, $arg3);
52 Static method called!
53 Static method called!
54 Static method called with args: arg1, arg2, arg3
55 Static method called with args: arg1, arg2, arg3
/PHP-8.1/ext/spl/tests/
H A Dspl_autoload_014.phpt6 echo "closure called with class $class\n";
15 echo ("Autoloader('{$this->dir}') called with $class\n");
21 echo ("WorkingAutoloader() called with $class\n");
42 closure called with class TestX
43 Autoloader('d1') called with TestX
44 WorkingAutoloader() called with TestX
45 WorkingAutoloader() called with TestY
H A Dspl_autoload_bug48541.phpt9 echo "a2 called\n";
15 echo "a called\n";
21 echo "b called\n";
34 a called
35 a2 called
36 b called
/PHP-8.1/ext/session/tests/
H A Dsession_set_save_handler_class_007.phpt21 echo "(#$this->num) constructor called\n";
24 echo "(#$this->num) destructor called\n";
28 echo "(#$this->num) finish called $id\n";
56 // implicit close (called by shutdown function)
62 (#1) constructor called
63 (#1) finish called %s
66 (#2) constructor called
67 (#1) destructor called
71 (#2) destructor called
H A Dsession_set_save_handler_class_008.phpt21 echo "(#$this->num) constructor called\n";
24 echo "(#$this->num) destructor called\n";
28 echo "(#$this->num) finish called $id\n";
56 (#1) constructor called
57 (#1) finish called %s
61 (#1) destructor called
H A Dsession_set_save_handler_class_010.phpt21 echo "(#$this->num) constructor called\n";
24 echo "(#$this->num) destructor called\n";
28 echo "(#$this->num) finish called $id\n";
54 (#1) constructor called
56 (#1) finish called %s
59 (#1) destructor called
H A Dsession_set_save_handler_class_009.phpt21 echo "(#$this->num) constructor called\n";
24 echo "(#$this->num) destructor called\n";
28 echo "(#$this->num) finish called $id\n";
54 (#1) constructor called
58 (#1) destructor called
/PHP-8.1/ext/standard/tests/assert/
H A Dassert_basic2.phpt13 echo "f2 called\n";
18 echo "f1 called\n";
30 f1 called
35 f2 called
/PHP-8.1/ext/xml/tests/
H A Dxml_set_notation_decl_handler_basic.phpt12 echo "unparsed_entity_decl_handler called\n";
22 echo "notation_decl_handler called\n";
59 notation_decl_handler called
64 notation_decl_handler called
69 notation_decl_handler called
74 unparsed_entity_decl_handler called
80 unparsed_entity_decl_handler called
86 unparsed_entity_decl_handler called
/PHP-8.1/ext/zend_test/tests/
H A Dobserver_call_user_func_01.phpt15 echo 'MyClass::myMethod called' . PHP_EOL;
21 echo 'my_function called' . PHP_EOL;
34 MyClass::myMethod called
38 my_function called
H A Dobserver_call_user_func_03.phpt15 echo 'MyClass::myMethod called' . PHP_EOL;
21 echo 'my_function called' . PHP_EOL;
33 MyClass::myMethod called
37 my_function called
H A Dobserver_call_user_func_04.phpt24 call_user_func_array('Test\\MyClass::myMethod', ['called']);
25 call_user_func_array('Test\\my_function', ['called']);
33 MyClass::myMethod called
37 my_function called
H A Dobserver_call_user_func_02.phpt25 call_user_func_array('Test\\MyClass::myMethod', ['called']);
26 call_user_func_array('Test\\my_function', ['called']);
34 MyClass::myMethod called
38 my_function called
/PHP-8.1/ext/ffi/tests/
H A Dtrampoline_reset.phpt21 echo "$name called\n";
40 foo called
41 bar called
43 baz called

Completed in 45 milliseconds

12345678910>>...14