4
A
回答
9
call_user_func_array('f', array(1, 2, 3));
如果你想叫一個類的方法,你會使用array($instance, 'f')
代替'f'
,如果它是一個靜態類函數,你會使用array('ClassName', 'f')
或'ClassName::f'
。有關詳情,請參閱callback type docs。
相關問題
- 1. 的Python相當於在PHP
- 2. GNU emacs相當於func-menu
- 3. VB.NET相當於Func鍵
- 4. python相當於php mcrypt tripledes
- 5. 的Python相當於PHP的array_column
- 6. 在Python中的PHP列表()相當於
- 7. 相當於PHP的Python包括
- 8. Python:相當於PHP的什麼「==」
- 9. 的Python相當於PHP對錯線
- 10. 什麼是相當於Python的foreach php
- 11. 相當於不使用表達式<Func<>> []的參數是什麼?
- 12. Java:相當於Python的str.format()
- 13. 的Python相當於指針
- 14. Linq Func的參數
- 15. func upper_bound的參數?
- 16. Python相當於phpinfo()
- 17. 的JavaScript相當於PHP的參數傳遞
- 18. 相當於C++的Python strtod
- 19. 相當於MATLAB的「ismember」函數的Python
- 20. 相當於Python dis()的Lua?
- 21. 相當於Python的〜/ .bashrc
- 22. 相當於C++中的Python
- 23. PHP的stripcslashes相當於
- 24. 相當於PHP的pack()?
- 25. Java的HashSet相當於PHP
- 26. 相當於Python的第7個參數Z3_API Z3_benchmark_to_smtlib_string
- 27. Php:相當於mysql_insert_id()的ingres
- 28. C++相當於PHP的包()
- 29. Java等於()相當於PHP
- 30. 相當於Python中的程序的Python
這很難看,但在問題中,他知道所有的參數,所以你也可以``f ='fname'; $ f(1,2,3);`,如果它是一個對象方法,你可以`$ o - > {$ f}(1,2,3);` – zanlok 2010-11-24 01:00:02