<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/language.types.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'language.types.void.php',
    1 => 'Void',
    2 => 'Void',
  ),
  'up' => 
  array (
    0 => 'language.types.php',
    1 => 'Tipi di dati',
  ),
  'prev' => 
  array (
    0 => 'language.types.mixed.php',
    1 => 'Mixed',
  ),
  'next' => 
  array (
    0 => 'language.types.never.php',
    1 => 'Never',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'it',
    'path' => 'language/types/void.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="language.types.void" class="sect1">
 <h2 class="title">Void</h2>

 <p class="para">
  <span class="type"><span class="type"><a href="language.types.void.php" class="type void">void</a></span></span> è una dichiarazione di tipo utilizzabile solo come tipo di ritorno, che indica che
  la funzione non restituisce un valore, ma può comunque terminare.
  Pertanto, non può far parte di una dichiarazione di
  <a href="language.types.type-system.php#language.types.type-system.composite.union" class="link">tipo union</a>.
  Disponibile a partire da PHP 7.1.0.
 </p>

 <blockquote class="note"><p><strong class="note">Nota</strong>: 
  <span class="simpara">
   Anche se una funzione ha un tipo di ritorno <span class="type"><span class="type"><a href="language.types.void.php" class="type void">void</a></span></span>,
   restituirà comunque un valore, che sarà sempre <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong>.
  </span>
 </p></blockquote>

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