芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/mctv/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/FuncCall.php
Arguments */ public $args; /** * Constructs a function call node. * * @param Node\Name|Expr $name Function name * @param array
$args Arguments * @param array $attributes Additional attributes */ public function __construct($name, array $args = [], array $attributes = []) { $this->attributes = $attributes; $this->name = $name; $this->args = $args; } public function getSubNodeNames() : array { return ['name', 'args']; } public function getType() : string { return 'Expr_FuncCall'; } public function getRawArgs(): array { return $this->args; } }