PhpToken::__toString

Returns the textual content of the token.

Description

public string PhpToken::__toString()

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

  • token_name