We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf48740 commit ef0fe91Copy full SHA for ef0fe91
php.el
@@ -78,6 +78,14 @@ You can replace \"en\" with your ISO language code."
78
:group 'php
79
:type 'string)
80
81
+;;; PHP Keywords
82
+(defconst php-magical-constants
83
+ (list "__LINE__" "__FILE__" "__FUNCTION__" "__CLASS__" "__TRAIT__" "__METHOD__" "__NAMESPACE__")
84
+ "Magical keyword that is expanded at compile time.
85
+
86
+These are different from \"constants\" in strict terms.
87
+see https://www.php.net/manual/language.constants.predefined.php")
88
89
;;; Utillity for locate language construction
90
(defsubst php-in-string-p ()
91
"Return non-nil if inside a string.
0 commit comments