<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.stream.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'stream.errors.php',
    1 => 'Stream Errors',
    2 => 'Stream Errors',
  ),
  'up' => 
  array (
    0 => 'book.stream.php',
    1 => 'Streams',
  ),
  'prev' => 
  array (
    0 => 'stream.contexts.php',
    1 => 'Stream Contexts',
  ),
  'next' => 
  array (
    0 => 'stream.examples.php',
    1 => 'Esempi',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/stream/errors.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="stream.errors" class="chapter">
 <h1 class="title">Stream Errors</h1>

 <p class="para">
  As with any file or socket related function, an operation 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 array returned
  by <span class="function"><a href="function.stream-get-wrappers.php" class="function">stream_get_wrappers()</a></span> for a list of streams supported by your
  installation of PHP.  As with most PHP internal functions
  if a failure occurs an <strong><code><a href="errorfunc.constants.php#constant.e-warning">E_WARNING</a></code></strong> message will be generated
  describing the nature of the error.
 </p>
</div>
<?php manual_footer($setup); ?>