W3cubDocs

/PHP

PhpToken::__toString

(PHP 8)

PhpToken::__toStringReturns the textual content of the token.

Description

public PhpToken::__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

© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/phptoken.tostring.php