use prism-tomorrow.css

This commit is contained in:
CyC2018
2018-12-19 14:09:39 +08:00
parent 0f00bcacaf
commit e9e604e6a7
1747 changed files with 100462 additions and 0 deletions

View File

@ -0,0 +1,37 @@
$GLOBALS
$_SERVER
$_GET
$_POST
$_FILES
$_REQUEST
$_SESSION
$_ENV
$_COOKIE
$php_errormsg
$HTTP_RAW_POST_DATA
$http_response_header
$argc
$argv
----------------------------------------------------
[
["global", "$GLOBALS"],
["global", "$_SERVER"],
["global", "$_GET"],
["global", "$_POST"],
["global", "$_FILES"],
["global", "$_REQUEST"],
["global", "$_SESSION"],
["global", "$_ENV"],
["global", "$_COOKIE"],
["global", "$php_errormsg"],
["global", "$HTTP_RAW_POST_DATA"],
["global", "$http_response_header"],
["global", "$argc"],
["global", "$argv"]
]
----------------------------------------------------
Checks for superglobals.

View File

@ -0,0 +1,27 @@
static::foo()
self::bar()
parent::baz()
----------------------------------------------------
[
["scope", [
["keyword", "static"],
["punctuation", "::"]
]],
["function", "foo"], ["punctuation", "("], ["punctuation", ")"],
["scope", [
["keyword", "self"],
["punctuation", "::"]
]],
["function", "bar"], ["punctuation", "("], ["punctuation", ")"],
["scope", [
["keyword", "parent"],
["punctuation", "::"]
]],
["function", "baz"], ["punctuation", "("], ["punctuation", ")"]
]
----------------------------------------------------
Checks for scopes.

View File

@ -0,0 +1,11 @@
$this
----------------------------------------------------
[
["this", "$this"]
]
----------------------------------------------------
Checks for $this.