Created
November 18, 2011 01:19
-
-
Save jyc/1375229 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## PHP syntax highlighting | |
## Modified by Jonathan Chan <[email protected]> on November 17th, 2011 | |
## Originally from http://pbxinaflash.net/source/nano/php.nanorc | |
## | |
syntax "php" "\.php$" "\.php[2345s]$" "\.phtml$" | |
#functions | |
color brightmagenta "([A-Za-z0-9])" | |
#numbers | |
color brightblue "[0-9]" | |
#special | |
color cyan "(^|[^A-Za-z0-9])(<\?php|\?>|var|and|or|default|class|extends|true|false|global|function|new|switch|case|break|next|prev|elseif|if|else|foreach|for|as|do|while|exit|die|declare|require_once|require|include_once|include|return|echo|static|array|isset)([^A-Za-z0-9])" | |
#types | |
color brightred "([^A-Za-z0-9])|[^A-Za-z](null|int|string|float|bool|object|resource)[^A-Za-z0-9_]+[^A-Za-z]" | |
#strings | |
color brightyellow ""(\\.|[^\"])*"" | |
color brightyellow "'(\\.|[^\'])*'" | |
#Variables | |
color brightcyan "\$[]\[A-Za-z0-9_'\"]*" | |
#comments | |
color green "//.*" | |
color green "#.*" | |
color green start="/\*" end="\*/" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment