ID: 20380 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Feedback -Bug Type: Sockets related +Bug Type: Filesystem function related Operating System: Linux Redhat, kernel 2.4 PHP Version: 4.2.3 New Comment:
There is no stream_set_blocking() function in PHP 4.2.x. Use socket_set_blocking() for 4.2; in 4.3 we are trying to clean up namespace issues (as you have discovered, the naming of this function conflicts with the sockets extension), hence the name change. Previous Comments: ------------------------------------------------------------------------ [2002-11-12 06:11:19] [EMAIL PROTECTED] Please try using this CVS snapshot: http://snaps.php.net/php4-latest.tar.gz For Windows: http://snaps.php.net/win32/php4-win32-latest.zip ------------------------------------------------------------------------ [2002-11-11 22:38:54] [EMAIL PROTECTED] Not sure if this is filesystem related or socket related; changing category to sockets related. ------------------------------------------------------------------------ [2002-11-11 22:31:43] [EMAIL PROTECTED] When using stream_set_blocking() in place of either socket_set_blocking() or set_socket_blocking(), the script hangs. The call method is: $fp = FSockOpen([valid connection data to internal network resource]); stream_set_blocking($fp, FALSE); The script operates normally when using socket_set_blocking, but complains via E_NOTICE error when set_socket_blocking is used, stating that it's deprecated and socket_set_blocking should be used. In the PHP manual, socket_set_blocking is an alias for stream_set_blocking. In the stream_set_blocking documentation, it states that both set_socket_blocking and socket_set_blocking are deprecated. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=20380&edit=1