Home
last modified time | relevance | path

Searched refs:func (Results 1 – 25 of 170) sorted by path

1234567

/PHP-5.5/
H A D.gdbinit392 set $func = (zend_function*)$p->pData
407 printf "\"%s\"\n", $func->common.function_name
H A DNEWS458 . Fixed bug #69212 (Leaking VIA_HANDLER func when exception thrown in
7632 - Fixed bug #40815 (using strings like "class::func" and static methods in
/PHP-5.5/Zend/
H A DZEND_CHANGES1008 ReflectionMethod::export('Foo', 'func');
/PHP-5.5/Zend/tests/
H A Daccess_modifiers_011.phpt22 public function __call($func, array $args = array())
24 return call_user_func_array(array($this, $func), $args);
H A Dbug40815.phpt2 Bug #40815 (using strings like "class::func" and static methods in set_exception_handler() might re…
H A Dbug48409.phpt29 public function func()
41 } // end func();
49 $x->func();
H A Dbug48770.phpt9 public function func($str) {
24 public function func($str) {
28 print "This method shouldn't be called when using parent::func!\n";
32 call_user_func_array(array($this, 'parent::func'), array($str));
43 public function func($str) {
44 parent::func($str);
49 $c->func('This should work!');
53 %unicode|string%(26) "A::func: This should work!"
H A Dbug48770_2.phpt9 public function func($str) {
24 public function func($str) {
39 public function func($str) {
40 parent::func($str);
45 $c->func('This should work!');
H A Dbug48770_3.phpt9 public function func($str) {
24 public function func($str) {
38 public function func($str) {
39 parent::func($str);
44 $c->func('This should work!');
H A Dbug52193.phpt21 $func = function(){ return 'just a test'; };
23 array_splice($items, 0 , 4, $func);
H A Dbug63741.phpt12 static function func ()
35 ClassToLoad::func();
H A Dbug64966.phpt8 function test($func) {
9 $a = $func("");
H A Dbug69212.phpt2 Bug #69212: Leaking VIA_HANDLER func when exception thrown in __call/... arg passing
H A Dclosure_023.phpt7 $func = function() { echo "Done"; };
8 $func();
H A Dclosure_033.phpt7 public $func;
9 $this->func = function() {
13 private function func() {
19 $f = $o->func;
21 $o->func();
28 Fatal error: Call to private method Test::func() from context '' in %sclosure_033.php on line %d
H A Dget_defined_functions_basic.phpt23 $func = get_defined_functions();
25 if (!is_array($func)) {
30 if (!is_array($func["internal"])) {
34 $internal = $func["internal"];
42 if (!is_array($func["user"])) {
46 $user = $func["user"];
H A Dget_defined_vars.phpt21 public function func() {
28 function func() {
47 func();
51 $sample_obj->func();
H A Disset_expr_error.phpt2 Error message for isset(func())
H A Disset_func_error.phpt2 Error message for isset(func())
8 Fatal error: Cannot use isset() on the result of a function call (you can use "null !== func()" ins…
H A Dmagic_by_ref_006.phpt11 $func = "foo";
13 $t->$func();
H A Dmagic_by_ref_007.phpt11 $func = "foo";
14 $t->$func($arg);
H A Dns_057.phpt10 return "func ok\n";
49 func ok
H A Dns_058.phpt8 return "func ok\n";
47 func ok
H A Dobject_handlers.phpt16 function __call($func, $args) {
17 $GLOBALS["y"] = $func;
19 static function __callStatic($func, $args) {
20 $GLOBALS["y"] = $func;
/PHP-5.5/Zend/tests/generators/
H A Dyield_in_parenthesis.phpt14 func(yield $foo);
15 $foo->func(yield $foo);

Completed in 46 milliseconds

1234567