PhpToken::__toString

(PHP 8)

PhpToken::__toStringReturns the textual content of the token.

Descrierea

public PhpToken::__toString ( ) : string

Returns the textual content of the token.

Parametri

Această funcție nu are parametri.

Valorile întoarse

A textual content of the token.

Exemple

Example #1 PhpToken::__toString() example

<?php
$token 
= new PhpToken(T_ECHO'echo');
echo 
$token;

Exemplele de mai sus vor afișa:

echo

A se vedea și

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top