06.27
php
saved
floob
Note
infinite recursion with simple setup
infinite recursion with simple setup
- // MyController: same folder as app_controller.php
- <?php
- class MyController extends Controller {
- }
- ?>
- // AppController
- <?php
- require_once('my_controller.php');
- class AppController extends MyController {
- }
- ?>
- /* That's all it should take. If you have no debugger installed (Xdebug), with a fresh cake checkout from svn, you should get a white screen of death. It's recursing infinitely */
Parsed in 0.016 seconds, using GeSHi 1.0.7.14