|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
  [2014-04-20 15:51 UTC] huqinlou0123 at 163 dot com
 Description: ------------ --- From manual page: http://www.php.net/reflectionclass.construct --- <code> $rClass = new \ReflectionClass('CommonController'); //$a=new CommonController; //$rClass = new \ReflectionClass($a); $methodList = $rClass->getMethods(); dump($methodList); exit; $this->display(); </code> this will not exit;and will display,and no error report; <code> //$rClass = new \ReflectionClass('CommonController'); $a=new CommonController; $rClass = new \ReflectionClass($a); $methodList = $rClass->getMethods(); dump($methodList); exit; $this->display(); </code> this will exit,and dump right list; the CommonController has required;and no cache,I can't understand ,is my environment's problem? my english isn't good,please try do it; Test script: --------------- Public function index () { $paramParse = new \Org\Util\ParamParse; //$data=$paramParse->buildAll('D:/wamp/www/BS2/Application/Hunlian/Controller'); $list = array(); require_once 'D:\wamp\www\BS2\Application\Hunlian\Controller\CommonController.class.php'; $rClass = new \ReflectionClass('CommonController'); //$a=new CommonController; //$rClass = new \ReflectionClass($a); $methodList = $rClass->getMethods(); dump($methodList); exit; $this->display(); } Expected result: ---------------- it can't run the way on my writed code; Actual result: -------------- all in above; PatchesIndexController.class.txt (last revision 2014-04-20 15:53 UTC by huqinlou0123 at 163 dot com)Pull RequestsHistoryAllCommentsChangesGit/SVN commits             | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 23:00:01 2025 UTC | 
Thank you for this bug report. To properly diagnose the problem, we need a short but complete example script to be able to reproduce this bug ourselves. A proper reproducing script starts with <?php and ends with ?>, is max. 10-20 lines long and does not require any external resources such as databases, etc. If the script requires a database to demonstrate the issue, please make sure it creates all necessary tables, stored procedures etc. Please avoid embedding huge scripts into the report. <?php class CommonController { } $rClass = new \ReflectionClass('CommonController'); //$a=new CommonController; //$rClass = new \ReflectionClass($a); $methodList = $rClass->getMethods(); var_dump($methodList); ?> Works for me.