hl_php.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * plugins/hl_php.json
  3. *
  4. * Copyright (C) 2022 bzt (bztsrc@gitlab)
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. *
  20. * @brief Syntax highlight rules for the PHP language
  21. *
  22. */
  23. [
  24. /* 0 comments */ [ "\/\/.*?$", "\/\*.*?\*\/", "#.*?$" ],
  25. /* 1 pseudo */ [ ],
  26. /* 2 operators */ [ "\?php", "=>", "[=\<\>\+\-\*\/%&\^\:\.|!][=:]?" ],
  27. /* 3 numbers */ [ "[\-]?[0-9][0-9bx]?[0-9\.a-fp]*" ],
  28. /* 4 strings */ [ "\"", "'", "`" ],
  29. /* 5 separators */ [ "[", "]", "{", "}", ",", ";" ],
  30. /* 6 types */ [ "true", "false", "null", "public", "protected", "private", "static", "var", "new" ],
  31. /* 7 keywords */ [ "if", "then", "else", "endif", "switch", "case", "for", "foreach", "as", "while", "eval", "require",
  32. "require_once", "include", "include_once", "do", "break", "continue", "function", "return", "try",
  33. "catch", "self", "this", "class", "die" ]
  34. ]