|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2013-07-21 10:14 UTC] laruence@php.net
-Status: Open
+Status: Not a bug
[2013-07-21 10:14 UTC] laruence@php.net
[2013-07-22 08:12 UTC] fengdingbo at gmail dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 16:00:01 2025 UTC |
Description: ------------ The code inside the Controller class_exists ('db'). Will result in an error. Warning: Yaf_Loader::autoload(): Failed opening script librarys/db.php: No such file or directory in /home/qiufeng/work/yaf/application/controllers/Index.php on line 5 Test script: --------------- <?php class IndexController extends Yaf_Controller_Abstract { public function indexAction() { class_exists('db'); } } ?> //======================= // output Warning: Yaf_Loader::autoload(): Failed opening script librarys/db.php: No such file or directory in /home/qiufeng/work/yaf/application/controllers/Index.php on line 5 Expected result: ---------------- Does not affect its own function.