|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2013-05-08 05:12 UTC] pajoye@php.net
-Status: Open
+Status: Feedback
[2013-05-08 05:12 UTC] pajoye@php.net
[2013-05-08 05:49 UTC] chopins dot xiao at gmail dot com
[2013-05-08 05:49 UTC] chopins dot xiao at gmail dot com
-Status: Feedback
+Status: Open
-Package: *General Issues
+Package: event
[2013-07-16 18:19 UTC] osmanov@php.net
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: osmanov
[2013-07-16 18:19 UTC] osmanov@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 10:00:01 2025 UTC |
Description: ------------ use EvIo create watchers object, and var_dump the object before Ev:run will report Warning: Ev::run(): Got unspecified libev error in revents, errno = 9, err = Bad file descriptor but no var_dump the object will be correct Test script: --------------- $ev = new EvIo(STDIN, Ev::READ, function ($watcher, $revents) { echo "STDIN is readable\n"; }); var_dump($ev); //if comment it be correct Ev::run(); Expected result: ---------------- no error report Actual result: -------------- report Warning