|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-12-05 15:23 UTC] wez@php.net
[2003-12-06 03:35 UTC] heino@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 18:00:01 2025 UTC |
Description: ------------ Something strange has happend stream_get_meta_data() between b1 and b2! Doing a stream_get_meta_data() on a tcp_socket stream results in an Access Violation. The "Actual Result" says it all... Reproduce code: --------------- $host = 'localhost'; $port = 80; $stream = stream_socket_client($host.':'.$port, $errno, $errstr); // fwrite($stream, "GET / HTTP/1.1\r\nHost: $host\r\n\r\n"); // echo fread($stream, 10240); var_dump(stream_get_meta_data($stream)); Expected result: ---------------- PHP Version 5.0.0b1: array(7) { ["stream_type"]=> string(10) "tcp_socket" ["mode"]=> string(2) "r+" ["unread_bytes"]=> int(0) ["seekable"]=> bool(false) ["timed_out"]=> bool(false) ["blocked"]=> bool(true) ["eof"]=> bool(true) } Actual result: -------------- PHP Version 5.0.0b2 & 5.0.0b3-dev: PHP has encountered an Access Violation at 010C80AD