PhpToken::__toString

(PHP 8)

PhpToken::__toStringReturns the textual content of the token.

Beschreibung

public PhpToken::__toString(): string

Returns the textual content of the token.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

A textual content of the token.

Beispiele

Beispiel #1 PhpToken::__toString() example

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

Die obigen Bespiele erzeugen folgende Ausgabe:

echo

Siehe auch

add a note add a note

User Contributed Notes

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