PHP Classes

File: vendor/nikic/php-parser/test/code/parser/expr/includeAndEval.test

Recommend this page to a friend!
  Packages of Abed Nego Ragil Putra   Laravel Blogging Platform   vendor/nikic/php-parser/test/code/parser/expr/includeAndEval.test   Download  
File: vendor/nikic/php-parser/test/code/parser/expr/includeAndEval.test
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Blogging Platform
Manage blog posts using Laravel and Bootstrap
Author: By
Last change:
Date: 8 months ago
Size: 713 bytes
 

Contents

Class file image Download
Include and eval ----- <?php include 'A.php'; include_once 'A.php'; require 'A.php'; require_once 'A.php'; eval('A'); ----- array( 0: Expr_Include( expr: Scalar_String( value: A.php ) type: TYPE_INCLUDE (1) ) 1: Expr_Include( expr: Scalar_String( value: A.php ) type: TYPE_INCLUDE_ONCE (2) ) 2: Expr_Include( expr: Scalar_String( value: A.php ) type: TYPE_REQUIRE (3) ) 3: Expr_Include( expr: Scalar_String( value: A.php ) type: TYPE_REQURE_ONCE (4) ) 4: Expr_Eval( expr: Scalar_String( value: A ) ) )