<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.posix.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'function.posix-strerror.php',
    1 => 'posix_strerror',
    2 => 'Recupera il messaggio di errore di un dato codice di errore',
  ),
  'up' => 
  array (
    0 => 'ref.posix.php',
    1 => 'POSIX Funzioni',
  ),
  'prev' => 
  array (
    0 => 'function.posix-setuid.php',
    1 => 'posix_setuid',
  ),
  'next' => 
  array (
    0 => 'function.posix-sysconf.php',
    1 => 'posix_sysconf',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'it',
    'path' => 'reference/posix/functions/posix-strerror.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.posix-strerror" class="refentry">
   <div class="refnamediv">
    <h1 class="refname">posix_strerror</h1>
    <p class="verinfo">(PHP 4 &gt;= 4.2.0, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">posix_strerror</span> &mdash; <span class="dc-title">
     Recupera il messaggio di errore di un dato codice di errore
    </span></p>

   </div>
   <div class="refsect1 unknown-958" id="refsect1-function.posix-strerror-unknown-958">
    <h3 class="title">Descrizione</h3>
     <div class="methodsynopsis dc-description">
      <span class="methodname"><strong>posix_strerror</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$errno</code></span>): <span class="type"><a href="language.types.string.php" class="type string">string</a></span></div>

    <p class="para rdfs-comment">
     La funzione restiruisce il messaggio di erore POSIX associato aa un dato codice di errore.
     Se il parametro <code class="parameter">errno</code> è impostato a 0, viene restituita
     la stringa &quot;Success&quot;. Utilizzare la funzione <span class="function"><a href="function.posix-get-last-error.php" class="function">posix_get_last_error()</a></span> 
     per ottenere il codice di errore.
    </p>
    <p class="para">
     Vedere anche <span class="function"><a href="function.posix-get-last-error.php" class="function">posix_get_last_error()</a></span>.
    </p>
   </div>

  </div><?php manual_footer($setup); ?>