File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 115115- Streams:
116116 . Fixed bug #68532 (convert.base64-encode omits padding bytes).
117117 (blaesius at krumedia dot de)
118+ . Removed set_socket_blocking() in favor of its alias stream_set_blocking().
119+ (Nikita)
118120
119121- XSL:
120122 . Fixed bug #64776 (The XSLT extension is not thread safe). (Mike)
Original file line number Diff line number Diff line change @@ -80,6 +80,9 @@ PHP X.Y UPGRADE NOTES
8080 instead.
8181 . Removed set_magic_quotes_runtime() and its alias magic_quotes_runtime().
8282
83+ - Stream:
84+ . Removed set_socket_blocking() in favor of its alias stream_set_blocking().
85+
8386========================================
84872. New Features
8588========================================
Original file line number Diff line number Diff line change @@ -3100,7 +3100,6 @@ const zend_function_entry basic_functions[] = { /* {{{ */
31003100 PHP_FALIAS (set_file_buffer , stream_set_write_buffer , arginfo_stream_set_write_buffer )
31013101 PHP_FE (stream_set_chunk_size , arginfo_stream_set_chunk_size )
31023102
3103- PHP_DEP_FALIAS (set_socket_blocking , stream_set_blocking , arginfo_stream_set_blocking )
31043103 PHP_FE (stream_set_blocking , arginfo_stream_set_blocking )
31053104 PHP_FALIAS (socket_set_blocking , stream_set_blocking , arginfo_stream_set_blocking )
31063105
You can’t perform that action at this time.
0 commit comments