PhpToken::__toString

(PHP 8)

PhpToken::__toStringReturns the textual content of the token.

Descrizione

public PhpToken::__toString(): string

Returns the textual content of the token.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

A textual content of the token.

Esempi

Example #1 PhpToken::__toString() example

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

I precedenti esempi visualizzeranno:

echo

Vedere anche:

add a note add a note

User Contributed Notes

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