Page MenuHomeWickedGov Phorge

EchoStatement.php
No OneTemporary

Size
1004 B
Referenced Files
None
Subscribers
None

EchoStatement.php

<?php
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
namespace Microsoft\PhpParser\Node\Statement;
use Microsoft\PhpParser\Node\StatementNode;
use Microsoft\PhpParser\Node\DelimitedList\ExpressionList;
use Microsoft\PhpParser\Token;
/**
* This represents either a literal echo statement (`echo expr`)
* or a short echo tag (`<?= expr...`)
*/
class EchoStatement extends StatementNode {
/**
* @var Token|null this is null if generated from `<?=`
*/
public $echoKeyword;
/** @var ExpressionList */
public $expressions;
/** @var Token */
public $semicolon;
const CHILD_NAMES = [
'echoKeyword',
'expressions',
'semicolon',
];
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 21:04 (1 d, 16 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
24/46/048699ef5334ccdd154d8c932bd3
Default Alt Text
EchoStatement.php (1004 B)

Event Timeline