mirror of
https://github.com/correl/melpa.git
synced 2024-11-15 11:09:27 +00:00
56 lines
1.9 KiB
JavaScript
56 lines
1.9 KiB
JavaScript
|
/*
|
||
|
Language: PHP
|
||
|
Author: Victor Karamzin <Victor.Karamzin@enterra-inc.com>
|
||
|
*/
|
||
|
|
||
|
hljs.LANGUAGES.php = {
|
||
|
case_insensitive: true,
|
||
|
defaultMode: {
|
||
|
keywords: {
|
||
|
'and': 1, 'include_once': 1, 'list': 1, 'abstract': 1, 'global': 1,
|
||
|
'private': 1, 'echo': 1, 'interface': 1, 'as': 1, 'static': 1,
|
||
|
'endswitch': 1, 'array': 1, 'null': 1, 'if': 1, 'endwhile': 1, 'or': 1,
|
||
|
'const': 1, 'for': 1, 'endforeach': 1, 'self': 1, 'var': 1, 'while': 1,
|
||
|
'isset': 1, 'public': 1, 'protected': 1, 'exit': 1, 'foreach': 1,
|
||
|
'throw': 1, 'elseif': 1, 'extends': 1, 'include': 1, '__FILE__': 1,
|
||
|
'empty': 1, 'require_once': 1, 'function': 1, 'do': 1, 'xor': 1,
|
||
|
'return': 1, 'implements': 1, 'parent': 1, 'clone': 1, 'use': 1,
|
||
|
'__CLASS__': 1, '__LINE__': 1, 'else': 1, 'break': 1, 'print': 1,
|
||
|
'eval': 1, 'new': 1, 'catch': 1, '__METHOD__': 1, 'class': 1, 'case': 1,
|
||
|
'exception': 1, 'php_user_filter': 1, 'default': 1, 'die': 1,
|
||
|
'require': 1, '__FUNCTION__': 1, 'enddeclare': 1, 'final': 1, 'try': 1,
|
||
|
'this': 1, 'switch': 1, 'continue': 1, 'endfor': 1, 'endif': 1,
|
||
|
'declare': 1, 'unset': 1, 'true': 1, 'false': 1, 'namespace': 1
|
||
|
},
|
||
|
contains: [
|
||
|
hljs.C_LINE_COMMENT_MODE,
|
||
|
hljs.HASH_COMMENT_MODE,
|
||
|
{
|
||
|
className: 'comment',
|
||
|
begin: '/\\*', end: '\\*/',
|
||
|
contains: [{
|
||
|
className: 'phpdoc',
|
||
|
begin: '\\s@[A-Za-z]+',
|
||
|
relevance: 10
|
||
|
}]
|
||
|
},
|
||
|
hljs.C_NUMBER_MODE,
|
||
|
hljs.inherit(hljs.APOS_STRING_MODE, {illegal: null}),
|
||
|
hljs.inherit(hljs.QUOTE_STRING_MODE, {illegal: null}),
|
||
|
{
|
||
|
className: 'variable',
|
||
|
begin: '\\$[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*'
|
||
|
},
|
||
|
{
|
||
|
className: 'preprocessor',
|
||
|
begin: '<\\?php',
|
||
|
relevance: 10
|
||
|
},
|
||
|
{
|
||
|
className: 'preprocessor',
|
||
|
begin: '\\?>'
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
};
|