|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull Requests
Pull requests:
HistoryAllCommentsChangesGit/SVN commits
[2013-04-02 14:33 UTC] wcode404 at gmail dot com
[2013-04-02 14:33 UTC] wcode404 at gmail dot com
-Summary: *
+Summary: Not include file specified in 'auto_prepend_file' in
router
[2013-04-03 01:47 UTC] laruence@php.net
[2013-04-03 01:47 UTC] laruence@php.net
-Assigned To:
+Assigned To: laruence
[2015-04-10 05:37 UTC] nicolas dot grekas+php at gmail dot com
[2015-04-29 13:45 UTC] jpauli@php.net
[2020-07-10 15:15 UTC] bdsdatlanhviet at gmail dot com
[2021-07-30 10:27 UTC] cmb@php.net
-Status: Assigned
+Status: Open
-Type: Bug
+Type: Documentation Problem
-Assigned To: laruence
+Assigned To:
[2021-07-30 10:27 UTC] cmb@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 07:00:01 2025 UTC |
Description: ------------ Not include file specified in 'auto_prepend_file' in router. Test script: --------------- # p.php <?php function p() { // do something } # php.ini ... auto_prepend_file = /path/to/p.php # router.php <?php var_dump(function_exists('p')); call in cmd # php -S localhost:8000 router.php Expected result: ---------------- bool(true) Actual result: -------------- bool(false)