PHP反射查找自定义函数
在PHP中,通过反射,可以方便地查找某个自定义函数所在的文件名,便于调试。同时还能得到该函数需要
传递的参数。
Reflection::export
直接上代码:
<?php $funcName="SafeHtml"; //要查找的函数名 Reflection::export(new ReflectionFunction($funcName));//直接显示 //写入文件 $str = Reflection::export(new ReflectionFunction($funcName), TRUE); file_put_contents(‘d:\mylog.txt‘, $str , FILE_APPEND); ?>
输出如下:
Function [ <user> function SafeHtml ] { @@ D:\wamp\www\libs\global.func_utf8_sql.php 94 - 118 - Parameters [2] { Parameter #0 [ <optional> $msg = ‘‘ ] Parameter #1 [ <optional> $clear_script = true ] } }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。