diff --git a/reference/stream/reference.xml b/reference/stream/reference.xml index 1e1096036d..692d5c1dfd 100644 --- a/reference/stream/reference.xml +++ b/reference/stream/reference.xml @@ -1,5 +1,5 @@ - + Stream functions Streams @@ -94,8 +94,8 @@ As with any file or socket related function, an opperation on a stream may fail for a variety of normal reasons (i.e.: Unable to connect to remote host, file not found, etc...). A stream related call may also fail because - the desired stream is not registered on the running system. See the output of - php_info for a list of streams supported by your + the desired stream is not registered on the running system. See the array returned + by stream_get_wrappers for a list of streams supported by your installation of PHP. As with most PHP internal functions if a failure occours an E_WARNING message will be generated describing the nature of the error. @@ -106,7 +106,8 @@ &reftitle.examples; - Using file_get_contents() to retrieve data from multiple sources + Using <function>file_get_contents</function> + to retrieve data from multiple sources