码迷,mamicode.com
首页 > Web开发 > 详细

PHP反射查找自定义函数

时间:2015-04-30 00:57:19      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

在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 ]
  }
}

 

PHP反射查找自定义函数

标签:

原文地址:http://www.cnblogs.com/fenle/p/4467745.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!