<?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-getsid.php',
    1 => 'posix_getsid',
    2 => 'Restituisce il sid corrente per un processo',
  ),
  'up' => 
  array (
    0 => 'ref.posix.php',
    1 => 'POSIX Funzioni',
  ),
  'prev' => 
  array (
    0 => 'function.posix-getrlimit.php',
    1 => 'posix_getrlimit',
  ),
  'next' => 
  array (
    0 => 'function.posix-getuid.php',
    1 => 'posix_getuid',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'it',
    'path' => 'reference/posix/functions/posix-getsid.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.posix-getsid" class="refentry">
   <div class="refnamediv">
    <h1 class="refname">posix_getsid</h1>
    <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">posix_getsid</span> &mdash; <span class="dc-title">Restituisce il sid corrente per un processo</span></p>

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

    <p class="para rdfs-comment">
     La funzione restituisce il sid per il processo indicato in
     <code class="parameter">pid</code>. Se
     <code class="parameter">pid</code> è impostato a 0, la funzione restituisce il
     sid del processo corrente.
    </p>
    <p class="para">
     Questa non è una funzione POSIX, ma è comune sui sistemi System V.
     Se il vostro sistema non supporta questa funzione,
     la funzione PHP restituirà sempre <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong>.
    </p>
   </div>

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