php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #76845 YAF在windows 下不正常
Submitted: 2018-09-06 01:37 UTC Modified: -
From: shan dot liu at msn dot com Assigned:
Status: Open Package: yaf (PECL)
PHP Version: 7.2.9 OS: windows+apache[handler]
Private report: No CVE-ID: None
Have you experienced this issue?
Rate the importance of this bug to you:

 [2018-09-06 01:37 UTC] shan dot liu at msn dot com
Description:
------------
//正常代码:
if (isset($_GET['ttt'])){
    echo $_GET['ttt'];exit;
}
echo file_get_contents("http://localhost/lshop/public/?ttt=bbbb");
//异常代码:
$application = new Yaf\Application(array(
    "application"=>array("directory"=>"./",)
));
if (isset($_GET['ttt'])){
    echo $_GET['ttt'];exit;
}
echo file_get_contents("http://localhost/lshop/public/?ttt=bbbb");
//log:
AH00428: Parent: child process 17728 exited with status 3221225477 -- Restarting.


Patches

Add a Patch

Pull Requests

Add a Pull Request

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 11:01:28 2024 UTC