diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-02-09 20:43:05 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-02-09 20:43:05 +0000 |
commit | f98ea4c46d06ab206ee93b53fb48744fa3888bc9 (patch) | |
tree | 7492b3c578cc288fcce4ad76c837693be1197eff /ext/standard/basic_functions.c | |
parent | 8b5bc3ecd3c6049ad930012fe6a4cbe1f02182b7 (diff) | |
download | php-git-f98ea4c46d06ab206ee93b53fb48744fa3888bc9.tar.gz |
Added feature request #9173 (added stream_get_line(), this function will
read either the specified number of bytes or until the ending string is
found).
Diffstat (limited to 'ext/standard/basic_functions.c')
-rw-r--r-- | ext/standard/basic_functions.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index dd743bd79d..5c2f1880a4 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -681,6 +681,7 @@ function_entry basic_functions[] = { PHP_FALIAS(socket_set_blocking, stream_set_blocking, NULL) PHP_FE(stream_get_meta_data, NULL) + PHP_FE(stream_get_line, NULL) PHP_FE(stream_register_wrapper, NULL) PHP_FE(stream_get_wrappers, NULL) PHP_FE(get_headers, NULL) |