有一个参考表显示每个php函数的执行成本?
我知道时间执行受许多因素的限制,不可能确定一个独特的价值,但我正在寻找一个“意识形态”表。
例如,
is_dir() = cost 3
is_file() = cost 2
(以它为例;)
如果我不记得不好,对于 C 有一个表,其中包含每个操作所需的 cpu 周期..
编辑:我阅读了你所有的评论,所以有任何表格可以满足我的需要。
无论如何,我知道
is_dir('/');//is faster than
is_dir('/a/very/long/path/to/check/');
但是,我很难接受这种情况(如果我理解你的话,是可能的);
$a = '/';
$b = '/a/very/long/path/to/check/';
is_dir($a); //time execution 0.003
is_file($a); //time execution 0.005
//so suppose is_dir is faster than is_file
//(still example, function names and number are random ;)
is_dir($b); //time execution 0.013
is_file($b); //time execution 0.009
//wow, now is faster is_file()....?