芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/midiatech/vendor/twig/twig/src/Node/PrintNode.php
*/ class PrintNode extends Node implements NodeOutputInterface { public function __construct(AbstractExpression $expr, $lineno, $tag = null) { parent::__construct(['expr' => $expr], [], $lineno, $tag); } public function compile(Compiler $compiler) { $compiler ->addDebugInfo($this) ->write('echo ') ->subcompile($this->getNode('expr')) ->raw(";\n") ; } } class_alias('Twig\Node\PrintNode', 'Twig_Node_Print');