PHP Callback 回调类型 js callback call back to asynccallbac
程序员文章站
2022-04-17 19:05:40
...
看
composer
的 autoload
的时候发现他用 spl_autoload_register
注册了一个类 class
进去。。明明记得是要传进去一个待注册的 autoload function
队列,查了查文档才发现关于 Callback
回调类型理解有误
看文档里面关于 Callback
回调类型的示例:
// Type 1: Simple callback
call_user_func('my_callback_function');
// Type 2: Static class method call
call_user_func(array('MyClass', 'myCallbackMethod'));
// Type 3: Object method call$obj = new MyClass();
call_user_func(array($obj, 'myCallbackMethod'));
// Type 4: Static class method call (As of PHP 5.2.3)
call_user_func('MyClass::myCallbackMethod');
// Type 5: Relative static class method call (As of PHP 5.3.0)classA {publicstaticfunctionwho() {echo"A\n";
}
}
classBextendsA {publicstaticfunctionwho() {echo"B\n";
}
}
call_user_func(array('B', 'parent::who')); // A
这里有5种回调类型,不仅仅是 function
学习,共勉。。
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });以上就介绍了PHP Callback 回调类型,包括了call,back方面的内容,希望对PHP教程有兴趣的朋友有所帮助。