我有幾個PHP文件充滿了多個功能。讓我們稱他們functions1.php,functions2.php,functions3.php:生成一組函數?
function function_something($atts) {
extract(something_atts(array(
'foo' => 'bar',
'bar' => 'foo,
), $atts));
return 'something';
}
我加載這些文件中all_functions.php這樣的:
require_once('functions1.php');
require_once('functions2.php');
require_once('functions3.php');
我不知道是否有可能創建一個包含所有這些函數及其屬性的數組?
我想是這樣的:
function my_functions() {
require_once('functions1.php');
require_once('functions2.php');
require_once('functions3.php');
}
然後一些foreach循環,但我不知道應該怎麼看起來像畢竟。
我知道這可能看起來非常棘手,但我只是好奇,如果我能列出我所有的WordPress的簡而不PHP的反射API :)
真的壞主意...... – Baba 2012-03-22 17:34:16