芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/mctv/vendor/jeremeamia/SuperClosure/src/Analyzer/Token.php
code = $code; $this->value = $value; $this->line = $line; $this->name = $value ? token_name($value) : null; } /** * Determines if the token's value/code is equal to the specified value. * * @param mixed $value The value to check. * * @return bool True if the token is equal to the value. */ public function is($value) { return ($this->code === $value || $this->value === $value); } public function __toString() { return $this->code; } }