<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/appendices.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'fr',
  ),
  'this' => 
  array (
    0 => 'tokens.php',
    1 => 'Liste des jetons de l\'analyseur',
    2 => 'Liste des jetons de l\'analyseur',
  ),
  'up' => 
  array (
    0 => 'appendices.php',
    1 => 'Annexes',
  ),
  'prev' => 
  array (
    0 => 'types.comparisons.php',
    1 => 'Comparaison de types en PHP',
  ),
  'next' => 
  array (
    0 => 'userlandnaming.php',
    1 => 'Guide de nommage de l\'espace utilisateur',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'fr',
    'path' => 'appendices/tokens.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="tokens" class="appendix">
 <h1 class="title">Liste des jetons de l&#039;analyseur</h1>

 <p class="para">
  Diverses parties du langage PHP sont représentées en interne par des jetons.
  Un morceau de code qui contient une séquence invalide de jetons peut mener
  à des erreurs telles que
  <code class="literal">Parse error: syntax error, unexpected token &quot;==&quot;,
   expecting &quot;(&quot; in script.php on line 10.&quot;</code>
  où le jeton <code class="code">==</code> est représenté en interne par
  <strong><code><a href="tokens.php#constant.t-is-equal">T_IS_EQUAL</a></code></strong>.
 </p>

 <p class="para">
  Le tableau suivant liste tous les jetons. Ils sont aussi disponibles en
  tant que constantes PHP.
 </p>
 
 <blockquote class="note"><p><strong class="note">Note</strong>: 
  <strong>Utilisation des constantes T_*</strong><br />
  <p class="para">
   Les valeurs des constantes T_* sont générées automatiquement en fonction
   de l&#039;infrastructure sous-jacente de l&#039;analyseur PHP.
   Ceci signifie que la valeur concrète d&#039;un jeton peut changer entre
   deux versions de PHP.
   Ceci signifie que le code ne doit jamais utiliser la valeur littérale
   des constantes T_* d&#039;une version PHP X.Y.Z, pour fournir une certaine
   compatibilité entre plusieurs versions de PHP.
  </p>

  <p class="para">
   Pour utiliser les constantes T_* à travers plusieurs versions de PHP,
   les constantes indéfinies peuvent être définies par l&#039;utilisateur (en
   utilisant des nombres larges tels que <code class="literal">10000</code>) avec
   une stratégie appropriée qui fonctionnera avec les deux versions de PHP
   et les valeurs de T_*.
   <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /></span><span style="color: #FF8000">// Antérieur à PHP 7.4.0, T_FN n'est pas définie.<br /></span><span style="color: #0000BB">defined</span><span style="color: #007700">(</span><span style="color: #DD0000">'T_FN'</span><span style="color: #007700">) || </span><span style="color: #0000BB">define</span><span style="color: #007700">(</span><span style="color: #DD0000">'T_FN'</span><span style="color: #007700">, </span><span style="color: #0000BB">10001</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
   </div>

  </p>
 </p></blockquote>

 <table class="doctable table">
  <caption><strong>Jetons</strong></caption>
  
   <thead>
    <tr>
     <th>Jeton</th>
     <th>Syntaxe</th>
     <th>Référence</th>
    </tr>

   </thead>

   <tbody class="tbody">
    <tr id="constant.t-abstract">
     <td><strong><code><a href="tokens.php#constant.t-abstract">T_ABSTRACT</a></code></strong></td>
     <td>abstract</td>
     <td><a href="language.oop5.abstract.php" class="xref">Abstraction de classes</a></td>
    </tr>

    <tr id="constant.t-ampersand-followed-by-var-or-vararg">
     <td><strong><code><a href="tokens.php#constant.t-ampersand-followed-by-var-or-vararg">T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG</a></code></strong></td>
     <td>&amp;</td>
     <td><a href="language.types.declarations.php" class="xref">D&eacute;clarations de type</a> (disponible à partir de PHP 8.1.0)</td>
    </tr>

    <tr id="constant.t-ampersand-not-followed-by-var-or-vararg">
     <td><strong><code><a href="tokens.php#constant.t-ampersand-not-followed-by-var-or-vararg">T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG</a></code></strong></td>
     <td>&amp;</td>
     <td><a href="language.types.declarations.php" class="xref">D&eacute;clarations de type</a> (disponible à partir de PHP 8.1.0)</td>
    </tr>

    <tr id="constant.t-and-equal">
     <td><strong><code><a href="tokens.php#constant.t-and-equal">T_AND_EQUAL</a></code></strong></td>
     <td>&amp;=</td>
     <td><a href="language.operators.assignment.php" class="link">opérateurs d&#039;assignation</a></td>
    </tr>

    <tr id="constant.t-array">
     <td><strong><code><a href="tokens.php#constant.t-array">T_ARRAY</a></code></strong></td>
     <td>array()</td>
     <td><span class="function"><a href="function.array.php" class="function">array()</a></span>, <a href="language.types.array.php#language.types.array.syntax" class="link">syntaxe de tableau</a></td>
    </tr>

    <tr id="constant.t-array-cast">
     <td><strong><code><a href="tokens.php#constant.t-array-cast">T_ARRAY_CAST</a></code></strong></td>
     <td>(array)</td>
     <td><a href="language.types.type-juggling.php#language.types.typecasting" class="link">transtypage</a></td>
    </tr>

    <tr id="constant.t-as">
     <td><strong><code><a href="tokens.php#constant.t-as">T_AS</a></code></strong></td>
     <td>as</td>
     <td><a href="control-structures.foreach.php" class="link"><code class="literal">foreach</code></a></td>
    </tr>

    <tr id="constant.t-attribute">
     <td><strong><code><a href="tokens.php#constant.t-attribute">T_ATTRIBUTE</a></code></strong></td>
     <td>#[</td>
     <td><a href="language.attributes.php" class="link">attributs</a> (disponible à partir de PHP 8.0.0)</td>
    </tr>

    <tr id="constant.t-bad-character">
     <td><strong><code><a href="tokens.php#constant.t-bad-character">T_BAD_CHARACTER</a></code></strong></td>
     <td class="empty">&nbsp;</td>
     <td>
      Tous les caractères en dessous de ASCII 32 exceptés \t (0x09), \n (0x0a) et \r (0x0d)
      (disponible à partir de PHP 7.4.0)
     </td>
    </tr>

    <tr id="constant.t-boolean-and">
     <td><strong><code><a href="tokens.php#constant.t-boolean-and">T_BOOLEAN_AND</a></code></strong></td>
     <td>&amp;&amp;</td>
     <td><a href="language.operators.logical.php" class="link">opérateurs logiques</a></td>
    </tr>

    <tr id="constant.t-boolean-or">
     <td><strong><code><a href="tokens.php#constant.t-boolean-or">T_BOOLEAN_OR</a></code></strong></td>
     <td>||</td>
     <td><a href="language.operators.logical.php" class="link">opérateurs logiques</a></td>
    </tr>

    <tr id="constant.t-boolean-cast">
     <td><strong><code>T_BOOL_CAST</code></strong></td>
     <td>(bool) ou (boolean)</td>
     <td><a href="language.types.type-juggling.php#language.types.typecasting" class="link">transtypage</a></td>
    </tr>

    <tr id="constant.t-break">
     <td><strong><code><a href="tokens.php#constant.t-break">T_BREAK</a></code></strong></td>
     <td>break</td>
     <td><a href="control-structures.break.php" class="link">break</a></td>
    </tr>

    <tr id="constant.t-callable">
     <td><strong><code><a href="tokens.php#constant.t-callable">T_CALLABLE</a></code></strong></td>
     <td>callable</td>
     <td><a href="language.types.callable.php" class="link">callable</a></td>
    </tr>

    <tr id="constant.t-case">
     <td><strong><code><a href="tokens.php#constant.t-case">T_CASE</a></code></strong></td>
     <td>case</td>
     <td><a href="control-structures.switch.php" class="link">switch</a></td>
    </tr>

    <tr id="constant.t-catch">
     <td><strong><code><a href="tokens.php#constant.t-catch">T_CATCH</a></code></strong></td>
     <td>catch</td>
     <td><a href="language.exceptions.php" class="xref">Les exceptions</a></td>
    </tr>

    <tr id="constant.t-class">
     <td><strong><code><a href="tokens.php#constant.t-class">T_CLASS</a></code></strong></td>
     <td>class</td>
     <td><a href="language.oop5.php" class="link">classes et objets</a></td>
    </tr>

    <tr id="constant.t-class-c">
     <td><strong><code><a href="tokens.php#constant.t-class-c">T_CLASS_C</a></code></strong></td>
     <td>__CLASS__</td>
     <td>
      <a href="language.constants.magic.php" class="link">constantes magiques</a>
     </td>
    </tr>

    <tr id="constant.t-clone">
     <td><strong><code><a href="tokens.php#constant.t-clone">T_CLONE</a></code></strong></td>
     <td>clone</td>
     <td>
      <a href="language.oop5.php" class="link">classes et objets</a>
     </td>
    </tr>

    <tr id="constant.t-close-tag">
     <td><strong><code><a href="tokens.php#constant.t-close-tag">T_CLOSE_TAG</a></code></strong></td>
     <td>?&gt; ou %&gt;</td>
     <td><a href="language.basic-syntax.phpmode.php" class="link">échapper
      depuis le HTML</a></td>
    </tr>

    <tr id="constant.t-coalesce">
     <td><strong><code><a href="tokens.php#constant.t-coalesce">T_COALESCE</a></code></strong></td>
     <td>??</td>
     <td>
      <a href="language.operators.comparison.php#language.operators.comparison.coalesce" class="link">opérateurs de comparaison</a>
     </td>
    </tr>

    <tr id="constant.t-coalesce-equal">
     <td><strong><code><a href="tokens.php#constant.t-coalesce-equal">T_COALESCE_EQUAL</a></code></strong></td>
     <td>??=</td>
     <td>
      <a href="language.operators.assignment.php" class="link">opérateurs d&#039;assignation</a>
      (disponible à partir de PHP 7.4.0)
     </td>
    </tr>

    <tr id="constant.t-comment">
     <td><strong><code><a href="tokens.php#constant.t-comment">T_COMMENT</a></code></strong></td>
     <td>// ou #, et /* */</td>
     <td><a href="language.basic-syntax.comments.php" class="link">commentaires</a></td>
    </tr>

    <tr id="constant.t-concat-equal">
     <td><strong><code><a href="tokens.php#constant.t-concat-equal">T_CONCAT_EQUAL</a></code></strong></td>
     <td>.=</td>
     <td><a href="language.operators.assignment.php" class="link">opérateurs d&#039;assignation</a></td>
    </tr>

    <tr id="constant.t-const">
     <td><strong><code><a href="tokens.php#constant.t-const">T_CONST</a></code></strong></td>
     <td>const</td>
     <td><a href="language.constants.php" class="link">constantes de classe</a></td>
    </tr>

    <tr id="constant.t-constant-encapsed-string">
     <td><strong><code><a href="tokens.php#constant.t-constant-encapsed-string">T_CONSTANT_ENCAPSED_STRING</a></code></strong></td>
     <td>&quot;foo&quot; ou &#039;bar&#039;</td>
     <td><a href="language.types.string.php#language.types.string.syntax" class="link">syntaxe chaîne de caractères</a></td>
    </tr>

    <tr id="constant.t-continue">
     <td><strong><code><a href="tokens.php#constant.t-continue">T_CONTINUE</a></code></strong></td>
     <td>continue</td>
     <td><a href="control-structures.continue.php" class="link">continue</a></td>
    </tr>

    <tr id="constant.t-curly-open">
     <td><strong><code><a href="tokens.php#constant.t-curly-open">T_CURLY_OPEN</a></code></strong></td>
     <td>{$</td>
     <td>
      syntaxe d&#039;interpolation de chaînes de variables
      <a href="language.types.string.php#language.types.string.parsing.advanced" class="link">avancée</a>
     </td>
    </tr>

    <tr id="constant.t-dec">
     <td><strong><code><a href="tokens.php#constant.t-dec">T_DEC</a></code></strong></td>
     <td>--</td>
     <td><a href="language.operators.increment.php" class="link">opérateurs d&#039;incrémentation/décrémentation</a></td>
    </tr>

    <tr id="constant.t-declare">
     <td><strong><code><a href="tokens.php#constant.t-declare">T_DECLARE</a></code></strong></td>
     <td>declare</td>
     <td><a href="control-structures.declare.php" class="link">declare</a></td>
    </tr>

    <tr id="constant.t-default">
     <td><strong><code><a href="tokens.php#constant.t-default">T_DEFAULT</a></code></strong></td>
     <td>default</td>
     <td><a href="control-structures.switch.php" class="link">switch</a></td>
    </tr>

    <tr id="constant.t-dir">
     <td><strong><code><a href="tokens.php#constant.t-dir">T_DIR</a></code></strong></td>
     <td>__DIR__</td>
     <td><a href="language.constants.magic.php" class="link">constantes magiques</a></td>
    </tr>

    <tr id="constant.t-div-equal">
     <td><strong><code><a href="tokens.php#constant.t-div-equal">T_DIV_EQUAL</a></code></strong></td>
     <td>/=</td>
     <td><a href="language.operators.assignment.php" class="link">opérateurs d&#039;assignation</a></td>
    </tr>

    <tr id="constant.t-dnumber">
     <td><strong><code><a href="tokens.php#constant.t-dnumber">T_DNUMBER</a></code></strong></td>
     <td>0.12, etc.</td>
     <td><a href="language.types.float.php" class="link">nombres à virgule flottante</a></td>
    </tr>

    <tr id="constant.t-do">
     <td><strong><code><a href="tokens.php#constant.t-do">T_DO</a></code></strong></td>
     <td>do</td>
     <td><a href="control-structures.do.while.php" class="link">do..while</a></td>
    </tr>

    <tr id="constant.t-doc-comment">
     <td><strong><code><a href="tokens.php#constant.t-doc-comment">T_DOC_COMMENT</a></code></strong></td>
     <td>/** */</td>
     <td>
      <a href="language.basic-syntax.comments.php" class="link">style de commentaire dans la PHPDoc</a>
     </td>
    </tr>

    <tr id="constant.t-dollar-open-curly-braces">
     <td><strong><code><a href="tokens.php#constant.t-dollar-open-curly-braces">T_DOLLAR_OPEN_CURLY_BRACES</a></code></strong></td>
     <td>${</td>
     <td>
      interpolation de chaîne de variables de <a href="language.types.string.php#language.types.string.parsing.basic" class="link">base</a>
     </td>
    </tr>

    <tr id="constant.t-double-arrow">
     <td><strong><code><a href="tokens.php#constant.t-double-arrow">T_DOUBLE_ARROW</a></code></strong></td>
     <td>=&gt;</td>
     <td><a href="language.types.array.php#language.types.array.syntax" class="link">syntaxe de tableau</a></td>
    </tr>

    <tr id="constant.t-double-cast">
     <td><strong><code><a href="tokens.php#constant.t-double-cast">T_DOUBLE_CAST</a></code></strong></td>
     <td>(real), (double) ou (float)</td>
     <td><a href="language.types.type-juggling.php#language.types.typecasting" class="link">transtypage</a></td>
    </tr>

    <tr id="constant.t-double-colon">
     <td><strong><code><a href="tokens.php#constant.t-double-colon">T_DOUBLE_COLON</a></code></strong></td>
     <td>::</td>
     <td>Voir <strong><code><a href="tokens.php#constant.t-paamayim-nekudotayim">T_PAAMAYIM_NEKUDOTAYIM</a></code></strong> plus bas</td>
    </tr>

    <tr id="constant.t-echo">
     <td><strong><code><a href="tokens.php#constant.t-echo">T_ECHO</a></code></strong></td>
     <td>echo</td>
     <td><span class="function"><a href="function.echo.php" class="function">echo</a></span></td>
    </tr>

    <tr id="constant.t-ellipsis">
     <td><strong><code><a href="tokens.php#constant.t-ellipsis">T_ELLIPSIS</a></code></strong></td>
     <td>...</td>
     <td>
      <a href="functions.arguments.php#functions.variable-arg-list" class="link">les arguments de fonction</a>
     </td>
    </tr>

    <tr id="constant.t-else">
     <td><strong><code><a href="tokens.php#constant.t-else">T_ELSE</a></code></strong></td>
     <td>else</td>
     <td><a href="control-structures.else.php" class="link">else</a></td>
    </tr>

    <tr id="constant.t-elseif">
     <td><strong><code><a href="tokens.php#constant.t-elseif">T_ELSEIF</a></code></strong></td>
     <td>elseif</td>
     <td><a href="control-structures.elseif.php" class="link">elseif</a></td>
    </tr>

    <tr id="constant.t-empty">
     <td><strong><code><a href="tokens.php#constant.t-empty">T_EMPTY</a></code></strong></td>
     <td>empty</td>
     <td><span class="function"><a href="function.empty.php" class="function">empty()</a></span></td>
    </tr>

    <tr id="constant.t-encapsed-and-whitespace">
     <td><strong><code><a href="tokens.php#constant.t-encapsed-and-whitespace">T_ENCAPSED_AND_WHITESPACE</a></code></strong></td>
     <td>&quot; $a&quot;</td>
     <td><a href="language.types.string.php#language.types.string.parsing" class="link">partie des constantes
      d&#039;une <a href="language.types.string.php" class="link">chaîne de caractères</a> contenant des variables</a></td>
    </tr>

    <tr id="constant.t-enddeclare">
     <td><strong><code><a href="tokens.php#constant.t-enddeclare">T_ENDDECLARE</a></code></strong></td>
     <td>enddeclare</td>
     <td><a href="control-structures.declare.php" class="link">declare</a>, <a href="control-structures.alternative-syntax.php" class="link">syntaxe alternative</a></td>
    </tr>

    <tr id="constant.t-endfor">
     <td><strong><code><a href="tokens.php#constant.t-endfor">T_ENDFOR</a></code></strong></td>
     <td>endfor</td>
     <td><a href="control-structures.for.php" class="link">for</a>, <a href="control-structures.alternative-syntax.php" class="link">syntaxe alternative</a></td>
    </tr>

    <tr id="constant.t-endforeach">
     <td><strong><code><a href="tokens.php#constant.t-endforeach">T_ENDFOREACH</a></code></strong></td>
     <td>endforeach</td>
     <td><a href="control-structures.foreach.php" class="link"><code class="literal">foreach</code></a>, <a href="control-structures.alternative-syntax.php" class="link">syntaxe alternative</a></td>
    </tr>

    <tr id="constant.t-endif">
     <td><strong><code><a href="tokens.php#constant.t-endif">T_ENDIF</a></code></strong></td>
     <td>endif</td>
     <td><a href="control-structures.if.php" class="link">if</a>, <a href="control-structures.alternative-syntax.php" class="link">syntaxe alternative</a></td>
    </tr>

    <tr id="constant.t-endswitch">
     <td><strong><code><a href="tokens.php#constant.t-endswitch">T_ENDSWITCH</a></code></strong></td>
     <td>endswitch</td>
     <td><a href="control-structures.switch.php" class="link">switch</a>, <a href="control-structures.alternative-syntax.php" class="link">syntaxe alternative</a></td>
    </tr>

    <tr id="constant.t-endwhile">
     <td><strong><code><a href="tokens.php#constant.t-endwhile">T_ENDWHILE</a></code></strong></td>
     <td>endwhile</td>
     <td><a href="control-structures.while.php" class="link">while</a>, <a href="control-structures.alternative-syntax.php" class="link">syntaxe alternative</a></td>
    </tr>

    <tr id="constant.t-enum">
     <td><strong><code><a href="tokens.php#constant.t-enum">T_ENUM</a></code></strong></td>
     <td>enum</td>
     <td><a href="language.types.enumerations.php" class="link">Énumérations</a> (disponible à partir de PHP 8.1.0)</td>
    </tr>

    <tr id="constant.t-end-heredoc">
     <td><strong><code><a href="tokens.php#constant.t-end-heredoc">T_END_HEREDOC</a></code></strong></td>
     <td class="empty">&nbsp;</td>
     <td><a href="language.types.string.php#language.types.string.syntax.heredoc" class="link">syntaxe heredoc</a></td>
    </tr>

    <tr id="constant.t-eval">
     <td><strong><code><a href="tokens.php#constant.t-eval">T_EVAL</a></code></strong></td>
     <td>eval()</td>
     <td><span class="function"><a href="function.eval.php" class="function">eval()</a></span></td>
    </tr>

    <tr id="constant.t-exit">
     <td><strong><code><a href="tokens.php#constant.t-exit">T_EXIT</a></code></strong></td>
     <td>exit ou die</td>
     <td>
      <span class="function"><a href="function.exit.php" class="function">exit()</a></span>,
      <span class="function"><a href="function.die.php" class="function">die()</a></span>
     </td>
    </tr>

    <tr id="constant.t-extends">
     <td><strong><code><a href="tokens.php#constant.t-extends">T_EXTENDS</a></code></strong></td>
     <td>extends</td>
     <td><a href="language.oop5.basic.php#language.oop5.basic.extends" class="link">extends</a>, <a href="language.oop5.php" class="link">classes et objets</a></td>
    </tr>

    <tr id="constant.t-file">
     <td><strong><code><a href="tokens.php#constant.t-file">T_FILE</a></code></strong></td>
     <td>__FILE__</td>
     <td><a href="language.constants.magic.php" class="link">constantes magiques</a></td>
    </tr>

    <tr id="constant.t-final">
     <td><strong><code><a href="tokens.php#constant.t-final">T_FINAL</a></code></strong></td>
     <td>final</td>
     <td><a href="language.oop5.final.php" class="xref">Mot-cl&eacute; &quot;final&quot;</a></td>
    </tr>

    <tr id="constant.t-finally">
     <td><strong><code><a href="tokens.php#constant.t-finally">T_FINALLY</a></code></strong></td>
     <td>finally</td>
     <td><a href="language.exceptions.php" class="xref">Les exceptions</a></td>
    </tr>

    <tr id="constant.t-fn">
     <td><strong><code><a href="tokens.php#constant.t-fn">T_FN</a></code></strong></td>
     <td>fn</td>
     <td>
      <a href="functions.arrow.php" class="link">fonctions fléchées</a>
      (disponible à partir de PHP 7.4.0)
     </td>
    </tr>

    <tr id="constant.t-for">
     <td><strong><code><a href="tokens.php#constant.t-for">T_FOR</a></code></strong></td>
     <td>for</td>
     <td><a href="control-structures.for.php" class="link">for</a></td>
    </tr>

    <tr id="constant.t-foreach">
     <td><strong><code><a href="tokens.php#constant.t-foreach">T_FOREACH</a></code></strong></td>
     <td>foreach</td>
     <td><a href="control-structures.foreach.php" class="link"><code class="literal">foreach</code></a></td>
    </tr>

    <tr id="constant.t-function">
     <td><strong><code><a href="tokens.php#constant.t-function">T_FUNCTION</a></code></strong></td>
     <td>function</td>
     <td><a href="language.functions.php" class="link">fonctions</a></td>
    </tr>

    <tr id="constant.t-func-c">
     <td><strong><code><a href="tokens.php#constant.t-func-c">T_FUNC_C</a></code></strong></td>
     <td>__FUNCTION__</td>
     <td>
      <a href="language.constants.magic.php" class="link">constantes magiques</a>
     </td>
    </tr>

    <tr id="constant.t-global">
     <td><strong><code><a href="tokens.php#constant.t-global">T_GLOBAL</a></code></strong></td>
     <td>global</td>
     <td><a href="language.variables.scope.php" class="link">portée de variable</a></td>
    </tr>

    <tr id="constant.t-goto">
     <td><strong><code><a href="tokens.php#constant.t-goto">T_GOTO</a></code></strong></td>
     <td>goto</td>
     <td><a href="control-structures.goto.php" class="link">goto</a></td>
    </tr>

    <tr id="constant.t-halt-compiler">
     <td><strong><code><a href="tokens.php#constant.t-halt-compiler">T_HALT_COMPILER</a></code></strong></td>
     <td>__halt_compiler()</td>
     <td><a href="function.halt-compiler.php" class="xref">__halt_compiler</a></td>
    </tr>

    <tr id="constant.t-if">
     <td><strong><code><a href="tokens.php#constant.t-if">T_IF</a></code></strong></td>
     <td>if</td>
     <td><a href="control-structures.if.php" class="link">if</a></td>
    </tr>

    <tr id="constant.t-implements">
     <td><strong><code><a href="tokens.php#constant.t-implements">T_IMPLEMENTS</a></code></strong></td>
     <td>implements</td>
     <td><a href="language.oop5.interfaces.php" class="xref">Interfaces</a></td>
    </tr>

    <tr id="constant.t-inc">
     <td><strong><code><a href="tokens.php#constant.t-inc">T_INC</a></code></strong></td>
     <td>++</td>
     <td><a href="language.operators.increment.php" class="link">opérateurs d&#039;incrémentation/décrémentation</a></td>
    </tr>

    <tr id="constant.t-include">
     <td><strong><code><a href="tokens.php#constant.t-include">T_INCLUDE</a></code></strong></td>
     <td>include</td>
     <td><span class="function"><a href="function.include.php" class="function">include</a></span></td>
    </tr>

    <tr id="constant.t-include-once">
     <td><strong><code><a href="tokens.php#constant.t-include-once">T_INCLUDE_ONCE</a></code></strong></td>
     <td>include_once</td>
     <td><span class="function"><a href="function.include-once.php" class="function">include_once</a></span></td>
    </tr>

    <tr id="constant.t-inline-html">
     <td><strong><code><a href="tokens.php#constant.t-inline-html">T_INLINE_HTML</a></code></strong></td>
     <td class="empty">&nbsp;</td>
     <td><a href="language.basic-syntax.phpmode.php" class="link">texte en dehors de PHP</a></td>
    </tr>

    <tr id="constant.t-instanceof">
     <td><strong><code><a href="tokens.php#constant.t-instanceof">T_INSTANCEOF</a></code></strong></td>
     <td>instanceof</td>
     <td>
      <a href="language.operators.type.php" class="link">opérateurs de type</a></td>
    </tr>

    <tr id="constant.t-insteadof">
     <td><strong><code><a href="tokens.php#constant.t-insteadof">T_INSTEADOF</a></code></strong></td>
     <td>insteadof</td>
     <td><a href="language.oop5.traits.php" class="xref">Traits</a></td>
    </tr>

    <tr id="constant.t-interface">
     <td><strong><code><a href="tokens.php#constant.t-interface">T_INTERFACE</a></code></strong></td>
     <td>interface</td>
     <td><a href="language.oop5.interfaces.php" class="xref">Interfaces</a></td>
    </tr>

    <tr id="constant.t-int-cast">
     <td><strong><code><a href="tokens.php#constant.t-int-cast">T_INT_CAST</a></code></strong></td>
     <td>(int) ou (integer)</td>
     <td><a href="language.types.type-juggling.php#language.types.typecasting" class="link">transtypage</a></td>
    </tr>

    <tr id="constant.t-isset">
     <td><strong><code><a href="tokens.php#constant.t-isset">T_ISSET</a></code></strong></td>
     <td>isset()</td>
     <td><span class="function"><a href="function.isset.php" class="function">isset()</a></span></td>
    </tr>

    <tr id="constant.t-is-equal">
     <td><strong><code><a href="tokens.php#constant.t-is-equal">T_IS_EQUAL</a></code></strong></td>
     <td>==</td>
     <td><a href="language.operators.comparison.php" class="link">opérateurs de comparaison</a></td>
    </tr>

    <tr id="constant.t-is-greater-or-equal">
     <td><strong><code><a href="tokens.php#constant.t-is-greater-or-equal">T_IS_GREATER_OR_EQUAL</a></code></strong></td>
     <td>&gt;=</td>
     <td><a href="language.operators.comparison.php" class="link">opérateurs de comparaison</a></td>
    </tr>

    <tr id="constant.t-is-identical">
     <td><strong><code><a href="tokens.php#constant.t-is-identical">T_IS_IDENTICAL</a></code></strong></td>
     <td>===</td>
     <td><a href="language.operators.comparison.php" class="link">opérateurs de comparaison</a></td>
    </tr>

    <tr id="constant.t-is-not-equal">
     <td><strong><code><a href="tokens.php#constant.t-is-not-equal">T_IS_NOT_EQUAL</a></code></strong></td>
     <td>!= ou &lt;&gt;</td>
     <td><a href="language.operators.comparison.php" class="link">opérateurs de comparaison</a></td>
    </tr>

    <tr id="constant.t-is-not-identical">
     <td><strong><code><a href="tokens.php#constant.t-is-not-identical">T_IS_NOT_IDENTICAL</a></code></strong></td>
     <td>!==</td>
     <td><a href="language.operators.comparison.php" class="link">opérateurs de comparaison</a></td>
    </tr>

    <tr id="constant.t-is-smaller-or-equal">
     <td><strong><code><a href="tokens.php#constant.t-is-smaller-or-equal">T_IS_SMALLER_OR_EQUAL</a></code></strong></td>
     <td>&lt;=</td>
     <td><a href="language.operators.comparison.php" class="link">opérateurs de comparaison</a></td>
    </tr>

    <tr id="constant.t-line">
     <td><strong><code><a href="tokens.php#constant.t-line">T_LINE</a></code></strong></td>
     <td>__LINE__</td>
     <td><a href="language.constants.magic.php" class="link">constantes magiques</a></td>
    </tr>

    <tr id="constant.t-list">
     <td><strong><code><a href="tokens.php#constant.t-list">T_LIST</a></code></strong></td>
     <td>list()</td>
     <td><span class="function"><a href="function.list.php" class="function">list()</a></span></td>
    </tr>

    <tr id="constant.t-lnumber">
     <td><strong><code><a href="tokens.php#constant.t-lnumber">T_LNUMBER</a></code></strong></td>
     <td>123, 012, 0x1ac, etc.</td>
     <td><a href="language.types.integer.php" class="link">entiers</a></td>
    </tr>

    <tr id="constant.t-logical-and">
     <td><strong><code><a href="tokens.php#constant.t-logical-and">T_LOGICAL_AND</a></code></strong></td>
     <td>and</td>
     <td><a href="language.operators.logical.php" class="link">opérateurs logiques</a></td>
    </tr>

    <tr id="constant.t-logical-or">
     <td><strong><code><a href="tokens.php#constant.t-logical-or">T_LOGICAL_OR</a></code></strong></td>
     <td>or</td>
     <td><a href="language.operators.logical.php" class="link">opérateurs logiques</a></td>
    </tr>

    <tr id="constant.t-logical-xor">
     <td><strong><code><a href="tokens.php#constant.t-logical-xor">T_LOGICAL_XOR</a></code></strong></td>
     <td>xor</td>
     <td><a href="language.operators.logical.php" class="link">opérateurs logiques</a></td>
    </tr>

    <tr id="constant.t-match">
     <td><strong><code><a href="tokens.php#constant.t-match">T_MATCH</a></code></strong></td>
     <td>match</td>
     <td>
      <a href="control-structures.match.php" class="link">match</a> (disponible à partir de PHP 8.0.0)
     </td>
    </tr>

    <tr id="constant.t-method-c">
     <td><strong><code><a href="tokens.php#constant.t-method-c">T_METHOD_C</a></code></strong></td>
     <td>__METHOD__</td>
     <td>
      <a href="language.constants.magic.php" class="link">constantes magiques</a>
     </td>
    </tr>

    <tr id="constant.t-minus-equal">
     <td><strong><code><a href="tokens.php#constant.t-minus-equal">T_MINUS_EQUAL</a></code></strong></td>
     <td>-=</td>
     <td><a href="language.operators.assignment.php" class="link">opérateurs d&#039;assignation</a></td>
    </tr>

    <tr id="constant.t-mod-equal">
     <td><strong><code><a href="tokens.php#constant.t-mod-equal">T_MOD_EQUAL</a></code></strong></td>
     <td>%=</td>
     <td><a href="language.operators.assignment.php" class="link">opérateurs d&#039;assignation</a></td>
    </tr>

    <tr id="constant.t-mul-equal">
     <td><strong><code><a href="tokens.php#constant.t-mul-equal">T_MUL_EQUAL</a></code></strong></td>
     <td>*=</td>
     <td><a href="language.operators.assignment.php" class="link">opérateurs d&#039;assignation</a></td>
    </tr>

    <tr id="constant.t-namespace">
     <td><strong><code><a href="tokens.php#constant.t-namespace">T_NAMESPACE</a></code></strong></td>
     <td>namespace</td>
     <td>
      <a href="language.namespaces.php" class="link">espaces de noms</a>
     </td>
    </tr>

    <tr id="constant.t-name-fully-qualified">
     <td><strong><code><a href="tokens.php#constant.t-name-fully-qualified">T_NAME_FULLY_QUALIFIED</a></code></strong></td>
     <td>\App\Namespace</td>
     <td>
      <a href="language.namespaces.php" class="link">espaces de noms</a> (disponible à partir de PHP 8.0.0)
     </td>
    </tr>

    <tr id="constant.t-name-qualified">
     <td><strong><code><a href="tokens.php#constant.t-name-qualified">T_NAME_QUALIFIED</a></code></strong></td>
     <td>App\Namespace</td>
     <td>
      <a href="language.namespaces.php" class="link">espaces de noms</a> (disponible à partir de PHP 8.0.0)
     </td>
    </tr>

    <tr id="constant.t-name-relative">
     <td><strong><code><a href="tokens.php#constant.t-name-relative">T_NAME_RELATIVE</a></code></strong></td>
     <td>namespace\Namespace</td>
     <td>
      <a href="language.namespaces.php" class="link">espaces de noms</a> (disponible à partir de PHP 8.0.0)
     </td>
    </tr>

    <tr id="constant.t-new">
     <td><strong><code><a href="tokens.php#constant.t-new">T_NEW</a></code></strong></td>
     <td>new</td>
     <td><a href="language.oop5.php" class="link">classes et objets</a></td>
    </tr>

    <tr id="constant.t-ns-c">
     <td><strong><code><a href="tokens.php#constant.t-ns-c">T_NS_C</a></code></strong></td>
     <td>__NAMESPACE__</td>
     <td>
      <a href="language.namespaces.php" class="link">espaces de noms</a>
     </td>
    </tr>

    <tr id="constant.t-ns-separator">
     <td><strong><code><a href="tokens.php#constant.t-ns-separator">T_NS_SEPARATOR</a></code></strong></td>
     <td>\</td>
     <td>
      <a href="language.namespaces.php" class="link">espaces de noms</a>
     </td>
    </tr>

    <tr id="constant.t-num-string">
     <td><strong><code><a href="tokens.php#constant.t-num-string">T_NUM_STRING</a></code></strong></td>
     <td>&quot;$a[0]&quot;</td>
     <td><a href="language.types.string.php#language.types.string.parsing" class="link">index d&#039;un tableau numérique
      se trouvant dans une <a href="language.types.string.php" class="link">chaîne de caractères</a></a></td>
    </tr>

    <tr id="constant.t-object-cast">
     <td><strong><code><a href="tokens.php#constant.t-object-cast">T_OBJECT_CAST</a></code></strong></td>
     <td>(object)</td>
     <td><a href="language.types.type-juggling.php#language.types.typecasting" class="link">transtypage</a></td>
    </tr>

    <tr id="constant.t-object-operator">
     <td><strong><code><a href="tokens.php#constant.t-object-operator">T_OBJECT_OPERATOR</a></code></strong></td>
     <td>-&gt;</td>
     <td><a href="language.oop5.php" class="link">classes et objets</a></td>
    </tr>

    <tr id="constant.t-nullsafe-object-operator">
     <td><strong><code><a href="tokens.php#constant.t-nullsafe-object-operator">T_NULLSAFE_OBJECT_OPERATOR</a></code></strong></td>
     <td>?-&gt;</td>
     <td><a href="language.oop5.php" class="link">classes et objets</a></td>
    </tr>

    <tr id="constant.t-open-tag">
     <td><strong><code><a href="tokens.php#constant.t-open-tag">T_OPEN_TAG</a></code></strong></td>
     <td>&lt;?php, &lt;? ou &lt;%</td>
     <td><a href="language.basic-syntax.phpmode.php" class="link">sortie du mode HTML</a></td>
    </tr>

    <tr id="constant.t-open-tag-with-echo">
     <td><strong><code><a href="tokens.php#constant.t-open-tag-with-echo">T_OPEN_TAG_WITH_ECHO</a></code></strong></td>
     <td>&lt;?= ou &lt;%=</td>
     <td><a href="language.basic-syntax.phpmode.php" class="link">sortie du mode HTML</a></td>
    </tr>

    <tr id="constant.t-or-equal">
     <td><strong><code><a href="tokens.php#constant.t-or-equal">T_OR_EQUAL</a></code></strong></td>
     <td>|=</td>
     <td><a href="language.operators.assignment.php" class="link">opérateurs d&#039;assignation</a></td>
    </tr>

    <tr id="constant.t-paamayim-nekudotayim">
     <td><strong><code><a href="tokens.php#constant.t-paamayim-nekudotayim">T_PAAMAYIM_NEKUDOTAYIM</a></code></strong></td>
     <td>::</td>
     <td><a href="language.oop5.paamayim-nekudotayim.php" class="link">résolution de portée</a>. Définie également
     en tant que <strong><code><a href="tokens.php#constant.t-double-colon">T_DOUBLE_COLON</a></code></strong>.</td>
    </tr>

    <tr id="constant.t-plus-equal">
     <td><strong><code><a href="tokens.php#constant.t-plus-equal">T_PLUS_EQUAL</a></code></strong></td>
     <td>+=</td>
     <td><a href="language.operators.assignment.php" class="link">opérateurs d&#039;assignation</a></td>
    </tr>

    <tr id="constant.t-pow">
     <td><strong><code><a href="tokens.php#constant.t-pow">T_POW</a></code></strong></td>
     <td>**</td>
     <td>
      <a href="language.operators.arithmetic.php" class="link">les opérateurs arithmétiques</a>
     </td>
    </tr>

    <tr id="constant.t-pow-equal">
     <td><strong><code><a href="tokens.php#constant.t-pow-equal">T_POW_EQUAL</a></code></strong></td>
     <td>**=</td>
     <td>
      <a href="language.operators.assignment.php" class="link">opérateurs d&#039;assignation</a>
     </td>
    </tr>

    <tr id="constant.t-print">
     <td><strong><code><a href="tokens.php#constant.t-print">T_PRINT</a></code></strong></td>
     <td>print</td>
     <td><span class="function"><a href="function.print.php" class="function">print</a></span></td>
    </tr>

    <tr id="constant.t-private">
     <td><strong><code><a href="tokens.php#constant.t-private">T_PRIVATE</a></code></strong></td>
     <td>private</td>
     <td><a href="language.oop5.php" class="link">classes et objets</a></td>
    </tr>

    <tr id="constant.t-private-set">
     <td><strong><code><a href="tokens.php#constant.t-private-set">T_PRIVATE_SET</a></code></strong></td>
     <td>private(set)</td>
     <td>
      hooks de propriété (disponible à partir de PHP 8.4.0)
     </td>
    </tr>

    <tr id="constant.t-property-c">
     <td><strong><code><a href="tokens.php#constant.t-property-c">T_PROPERTY_C</a></code></strong></td>
     <td>__PROPERTY__</td>
     <td>
      <a href="language.constants.magic.php" class="link">constantes magiques</a>
     </td>
    </tr>

    <tr id="constant.t-protected">
     <td><strong><code><a href="tokens.php#constant.t-protected">T_PROTECTED</a></code></strong></td>
     <td>protected</td>
     <td><a href="language.oop5.php" class="link">classes et objets</a></td>
    </tr>

    <tr id="constant.t-protected-set">
     <td><strong><code><a href="tokens.php#constant.t-protected-set">T_PROTECTED_SET</a></code></strong></td>
     <td>protected(set)</td>
     <td>
      hooks de propriété (disponible à partir de PHP 8.4.0)
     </td>
    </tr>

    <tr id="constant.t-public">
     <td><strong><code><a href="tokens.php#constant.t-public">T_PUBLIC</a></code></strong></td>
     <td>public</td>
     <td><a href="language.oop5.php" class="link">classes et objets</a></td>
    </tr>

    <tr id="constant.t-public-set">
     <td><strong><code><a href="tokens.php#constant.t-public-set">T_PUBLIC_SET</a></code></strong></td>
     <td>public(set)</td>
     <td>
      hooks de propriété (disponible à partir de PHP 8.4.0)
     </td>
    </tr>

    <tr id="constant.t-readonly">
     <td><strong><code><a href="tokens.php#constant.t-readonly">T_READONLY</a></code></strong></td>
     <td>readonly</td>
     <td>
      <a href="language.oop5.php" class="link">classes et objets</a> (disponible à partir de PHP 8.1.0)
     </td>
    </tr>

    <tr id="constant.t-require">
     <td><strong><code><a href="tokens.php#constant.t-require">T_REQUIRE</a></code></strong></td>
     <td>require</td>
     <td><span class="function"><a href="function.require.php" class="function">require</a></span></td>
    </tr>

    <tr id="constant.t-require-once">
     <td><strong><code><a href="tokens.php#constant.t-require-once">T_REQUIRE_ONCE</a></code></strong></td>
     <td>require_once</td>
     <td><span class="function"><a href="function.require-once.php" class="function">require_once</a></span></td>
    </tr>

    <tr id="constant.t-return">
     <td><strong><code><a href="tokens.php#constant.t-return">T_RETURN</a></code></strong></td>
     <td>return</td>
     <td><a href="functions.returning-values.php" class="link">valeurs retournées</a></td>
    </tr>

    <tr id="constant.t-sl">
     <td><strong><code><a href="tokens.php#constant.t-sl">T_SL</a></code></strong></td>
     <td>&lt;&lt;</td>
     <td><a href="language.operators.bitwise.php" class="link">opérateurs sur les bits</a></td>
    </tr>

    <tr id="constant.t-sl-equal">
     <td><strong><code><a href="tokens.php#constant.t-sl-equal">T_SL_EQUAL</a></code></strong></td>
     <td>&lt;&lt;=</td>
     <td><a href="language.operators.assignment.php" class="link">opérateurs d&#039;assignation</a></td>
    </tr>

    <tr id="constant.t-spaceship">
     <td><strong><code><a href="tokens.php#constant.t-spaceship">T_SPACESHIP</a></code></strong></td>
     <td>&lt;=&gt;</td>
     <td>
      <a href="language.operators.comparison.php" class="link">opérateurs de comparaisons</a>
     </td>
    </tr>

    <tr id="constant.t-sr">
     <td><strong><code><a href="tokens.php#constant.t-sr">T_SR</a></code></strong></td>
     <td>&gt;&gt;</td>
     <td><a href="language.operators.bitwise.php" class="link">opérateurs sur les bits</a></td>
    </tr>

    <tr id="constant.t-sr-equal">
     <td><strong><code><a href="tokens.php#constant.t-sr-equal">T_SR_EQUAL</a></code></strong></td>
     <td>&gt;&gt;=</td>
     <td><a href="language.operators.assignment.php" class="link">opérateurs d&#039;assignation</a></td>
    </tr>

    <tr id="constant.t-start-heredoc">
     <td><strong><code><a href="tokens.php#constant.t-start-heredoc">T_START_HEREDOC</a></code></strong></td>
     <td>&lt;&lt;&lt;</td>
     <td><a href="language.types.string.php#language.types.string.syntax.heredoc" class="link">syntaxe heredoc</a></td>
    </tr>

    <tr id="constant.t-static">
     <td><strong><code><a href="tokens.php#constant.t-static">T_STATIC</a></code></strong></td>
     <td>static</td>
     <td><a href="language.variables.scope.php" class="link">portée de variable</a></td>
    </tr>

    <tr id="constant.t-string">
     <td><strong><code><a href="tokens.php#constant.t-string">T_STRING</a></code></strong></td>
     <td>parent, self, etc.</td>
     <td>identifiants, par exemple les mots-clés comme <code class="literal">parent</code> et
      <code class="literal">self</code>, noms de fonctions, classes et autres, correspondent.
      Voir aussi <strong><code><a href="tokens.php#constant.t-constant-encapsed-string">T_CONSTANT_ENCAPSED_STRING</a></code></strong>.
     </td>
    </tr>

    <tr id="constant.t-string-cast">
     <td><strong><code><a href="tokens.php#constant.t-string-cast">T_STRING_CAST</a></code></strong></td>
     <td>(string)</td>
     <td><a href="language.types.type-juggling.php#language.types.typecasting" class="link">transtypage</a></td>
    </tr>

    <tr id="constant.t-string-varname">
     <td><strong><code><a href="tokens.php#constant.t-string-varname">T_STRING_VARNAME</a></code></strong></td>
     <td>&quot;${a</td>
     <td>
      <a href="language.variables.variable.php" class="link">variables flexibles</a>
      à interpoler dans une chaîne
     </td>
    </tr>

    <tr id="constant.t-switch">
     <td><strong><code><a href="tokens.php#constant.t-switch">T_SWITCH</a></code></strong></td>
     <td>switch</td>
     <td><a href="control-structures.switch.php" class="link">switch</a></td>
    </tr>

    <tr id="constant.t-throw">
     <td><strong><code><a href="tokens.php#constant.t-throw">T_THROW</a></code></strong></td>
     <td>throw</td>
     <td><a href="language.exceptions.php" class="xref">Les exceptions</a></td>
    </tr>

    <tr id="constant.t-trait">
     <td><strong><code><a href="tokens.php#constant.t-trait">T_TRAIT</a></code></strong></td>
     <td>trait</td>
     <td><a href="language.oop5.traits.php" class="xref">Traits</a></td>
    </tr>

    <tr id="constant.t-trait-c">
     <td><strong><code><a href="tokens.php#constant.t-trait-c">T_TRAIT_C</a></code></strong></td>
     <td>__TRAIT__</td>
     <td><strong><code><a href="language.constants.magic.php#constant.trait">__TRAIT__</a></code></strong></td>
    </tr>

    <tr id="constant.t-try">
     <td><strong><code><a href="tokens.php#constant.t-try">T_TRY</a></code></strong></td>
     <td>try</td>
     <td><a href="language.exceptions.php" class="xref">Les exceptions</a></td>
    </tr>

    <tr id="constant.t-unset">
     <td><strong><code><a href="tokens.php#constant.t-unset">T_UNSET</a></code></strong></td>
     <td>unset()</td>
     <td><span class="function"><a href="function.unset.php" class="function">unset()</a></span></td>
    </tr>

    <tr id="constant.t-unset-cast">
     <td><strong><code><a href="tokens.php#constant.t-unset-cast">T_UNSET_CAST</a></code></strong></td>
     <td>(unset)</td>
     <td><a href="language.types.type-juggling.php#language.types.typecasting" class="link">transtypage</a></td>
    </tr>

    <tr id="constant.t-use">
     <td><strong><code><a href="tokens.php#constant.t-use">T_USE</a></code></strong></td>
     <td>use</td>
     <td><a href="language.namespaces.php" class="link">espaces de noms</a></td>
    </tr>

    <tr id="constant.t-var">
     <td><strong><code><a href="tokens.php#constant.t-var">T_VAR</a></code></strong></td>
     <td>var</td>
     <td><a href="language.oop5.php" class="link">classes et objets</a></td>
    </tr>

    <tr id="constant.t-variable">
     <td><strong><code><a href="tokens.php#constant.t-variable">T_VARIABLE</a></code></strong></td>
     <td>$foo</td>
     <td><a href="language.variables.php" class="link">variables</a></td>
    </tr>

    <tr id="constant.t-while">
     <td><strong><code><a href="tokens.php#constant.t-while">T_WHILE</a></code></strong></td>
     <td>while</td>
     <td><a href="control-structures.while.php" class="link">while</a>, 
     <a href="control-structures.do.while.php" class="link">do...while</a></td>
    </tr>

    <tr id="constant.t-whitespace">
     <td><strong><code><a href="tokens.php#constant.t-whitespace">T_WHITESPACE</a></code></strong></td>
     <td>\t \r\n</td>
     <td class="empty">&nbsp;</td>
    </tr>

    <tr id="constant.t-xor-equal">
     <td><strong><code><a href="tokens.php#constant.t-xor-equal">T_XOR_EQUAL</a></code></strong></td>
     <td>^=</td>
     <td><a href="language.operators.assignment.php" class="link">opérateurs d&#039;assignation</a></td>
    </tr>

    <tr id="constant.t-yield">
     <td><strong><code><a href="tokens.php#constant.t-yield">T_YIELD</a></code></strong></td>
     <td>yield</td>
     <td><a href="language.generators.syntax.php#control-structures.yield" class="link">générateurs</a></td>
    </tr>

    <tr id="constant.t-yield-from">
     <td><strong><code><a href="tokens.php#constant.t-yield-from">T_YIELD_FROM</a></code></strong></td>
     <td>yield from</td>
     <td><a href="language.generators.syntax.php#control-structures.yield.from" class="link">générateurs</a></td>
    </tr>

   </tbody>
  
 </table>

 <p class="para">
  Voir aussi <span class="function"><a href="function.token-name.php" class="function">token_name()</a></span>.
 </p>
</div>
<?php manual_footer($setup); ?>