Urara-Blog/node_modules/.pnpm-store/v3/files/e9/1ba04123c0bd71b42c8b9753693d5079e0457d0f0fc8f1d49ad3288df95566360a9b1231c909a552141141d2580a2ea0cb7aca70476baf81dc6c4454c0e1b7
2022-08-14 01:14:53 +08:00

14 lines
385 B
Text

Prism.languages.insertBefore('php', 'variable', {
'this': {
pattern: /\$this\b/,
alias: 'keyword'
},
'global': /\$(?:GLOBALS|HTTP_RAW_POST_DATA|_(?:COOKIE|ENV|FILES|GET|POST|REQUEST|SERVER|SESSION)|argc|argv|http_response_header|php_errormsg)\b/,
'scope': {
pattern: /\b[\w\\]+::/,
inside: {
'keyword': /\b(?:parent|self|static)\b/,
'punctuation': /::|\\/
}
}
});