PhpToken::__toString

(PHP 8)

PhpToken::__toStringReturns the textual content of the token.

Description

publicPhpToken::__toString(): string

Returns the textual content of the token.

Parameters

This function has no parameters.

Return Values

A textual content of the token.

Examples

Example #1 PhpToken::__toString() example

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

The above examples will output:

echo

See Also

To Top