|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2019-01-16 15:35 UTC] nikic@php.net
-Status: Open
+Status: Feedback
[2019-01-16 15:35 UTC] nikic@php.net
[2019-01-16 15:54 UTC] abc905 at mail dot ru
[2019-01-16 15:56 UTC] nikic@php.net
-Status: Feedback
+Status: Duplicate
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 15:00:01 2025 UTC |
Description: ------------ After 5th http request to NginX server next error occur: (After 3rd http request to built-in php server) Jan 16 14:44:17 debian php-fpm7.3[9823]: ool www[9823]: PHP Fatal error: Uncaught TypeError: Argument 1 passed to x\A::__construct() must be of the type int, unknown given, called in index.php on line 6 and defined in index.php:11 Jan 16 14:44:17 debian php-fpm7.3[9823]: ool www[9823]: Stack trace: Jan 16 14:44:17 debian php-fpm7.3[9823]: ool www[9823]: #0 /home/user/Projects/gogomoms.vm/backend/api/v1/routes/tag/index.php(6): x\A->__construct() Jan 16 14:44:17 debian php-fpm7.3[9823]: ool www[9823]: #1 [internal function]: x\{closure}(Object(Exception)) Jan 16 14:44:17 debian php-fpm7.3[9823]: ool www[9823]: #2 {main} Jan 16 14:44:17 debian php-fpm7.3[9823]: ool www[9823]: thrown in /home/user/Projects/gogomoms.vm/backend/api/v1/routes/tag/index.php on line 11 Test script: --------------- $ sudo php -S localhost:88 -t . $ curl http://localhost:88 $ curl http://localhost:88 $ curl http://localhost:88 index.php : ----------- <?php namespace x; set_exception_handler(function () { $A = new A(); $A->do(); }); class A { public function __construct(int $n = LOG_LOCAL0) { } public function do() { $this->done(); } private function done() { } } throw new \Exception();