|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-09-07 11:04 UTC] jani@php.net
[2017-10-24 03:32 UTC] kalle@php.net
-Status: Assigned
+Status: Open
-Assigned To: wharmby
+Assigned To:
[2020-11-04 13:39 UTC] cmb@php.net
-Status: Open
+Status: Verified
-Type: Bug
+Type: Documentation Problem
-Assigned To:
+Assigned To: cmb
[2020-11-04 13:39 UTC] cmb@php.net
[2020-11-04 13:50 UTC] phpdocbot@php.net
[2020-11-04 13:50 UTC] phpdocbot@php.net
-Status: Verified
+Status: Closed
[2020-11-04 18:05 UTC] phpdocbot@php.net
[2020-12-30 11:58 UTC] nikic@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 01:00:02 2025 UTC |
Description: ------------ If I have a COM object call into PHP (via com_event_sink or IE's window.setTimeout) with a die() within the called code, then PHP hangs. In the example below, IE comes up and waits around for 4 seconds, after which an $ie->quit() is issued. In the event handler (function OnQuit()) a die() is issued. While IE does shut down, PHP does not return me the command prompt. This is from PHP CLI, of course. Csaba Gabor from Vienna Reproduce code: --------------- <?php class IESink { public $terminated = false; public function TitleChange($text) { echo("title has changed: $text \n"); } public function OnQuit() { print "Quitting\n"; die(); print "Died\n"; $this->terminated = true; } } $ie = new COM("InternetExplorer.Application"); $ie->Visible = true; $sink = new IESink; com_event_sink($ie, $sink, "DWebBrowserEvents2"); $ie->Navigate("http://www.php.net/"); $start = time(); $quitted = false; while (!$sink->terminated) { com_message_pump(200); if (time()-$start>4 && !$quitted) { $quitted=true; $ie->quit(); } } print "Finished!\n"; ?> Expected result: ---------------- I expect to be shown the following three lines, ie to go away, AND for PHP to terminate: title has changed: PHP: Hypertext Preprocessor title has changed: PHP: Hypertext Preprocessor Quitting Actual result: -------------- The above 3 lines are shown, IE goes away, BUT php does not terminate. Also, note that if I manually shut IE down, instead of waiting the 4 seconds, then I get the following additional line (and PHP still hangs the cmd prompt): Fatal error: Call to undefined method com::quit() in Unknown on line 0 It seems to me that the while loop stays active, since that's the only place that $ie->quit() is issued.