在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
php反射应用示例。
代码如下:<?php
function custom(){ } class custom{ public function index(){ } } print_r(get_define_position('custom')); /** * / * @param string $name 函数名或者类名 * @return array */ www.jbxue.com function get_define_position($name){ $info = array(); if(class_exists($name)){ $ob = new ReflectionClass($name); $info['class_'.$name]= array('file'=>$ob->getFileName(),'line'=>$ob->getStartLine()); } if(function_exists($name)){ $ob = new ReflectionFunction($name); $info['function_'.$name]= array('file'=>$ob->getFileName(),'line'=>$ob->getStartLine()); } return $info; } |
2022-08-18
2022-08-17
2022-11-06
2022-08-17
2022-07-30
请发表评论