File: php.jsf

package info (click to toggle)
joe 4.6-1.1
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 10,236 kB
  • sloc: ansic: 51,619; sh: 4,326; makefile: 195; csh: 26
file content (339 lines) | stat: -rw-r--r-- 5,589 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
# JOE syntax highlight file for PHP
# modified by Eric Lin

# TODO:
#  * heredoc support (as good as possible)
#  * highlight function and class names?

# Define colors

=Idle
=Comment
=Constant
=Number		+Constant
=String		+Constant
=StringEscape	+Escape
=Character	+Constant
=CharacterEscape +Escape
=Boolean	+Constant
=Escape
=Keyword
=Variable	+DefinedIdent
=Builtin	+DefinedFunc
=Operator	+Keyword
=Statement	+Keyword
=Conditional	+Statement
=Loop		+Statement
=Structure	+Statement
=Label		+DefinedIdent
=StorageClass	+Type +Keyword

# Call HTML highlighter.  It will call the PHP highlighter subroutine in this file.

:begin Idle
	*	call_failed	noeat call=html.html(php)

:call_failed Variable
	*	call_failed

# PHP highlighter.

.subr php

:idle Idle
	*		idle
	"<"		idle_done
	"?"		idle_qmark
	"%"		idle_hash
	"#"		sh_comment	recolor=-1
	"/"		slash
	"0-9"		first_digit	recolor=-1
	"'"		string_sq	recolor=-1
	"\""		string_dq	recolor=-1
	"\`"		string_bq	recolor=-1
	"\i"		ident		buffer
	"$"   php_var recolor=-1
	"-" maybe_method
	"{}"  brace recolor=-1

:idle_done Idle
	*		idle noeat
	"/"		idle noeat recolor=-2 return
	"<"		idle_here

:idle_here Idle
	*		idle noeat
	"<"		here_doc

:here_doc Idle
	*		idle noeat
	" 	"	here_doc
	"\i"		here_name buffer

:here_name Idle
	*		inhere_doc save_s
	"\c"		here_name

:inhere_doc Constant
	*		inhere_not_eol
	"\n"		inhere_doc
	"\i"		inhere_name buffer

:inhere_not_eol Constant
	*		inhere_not_eol
	"\n"		inhere_doc

:inhere_name Constant
	*		inhere_doc
	";"		inhere_doc strings
	"&"		idle
done
	"\c"		inhere_name
	
:brace Builtin
  * idle  noeat
	
:php_var Variable
  * idle noeat
  "\c" php_var

:var_indqstring Variable
	*	string_dq	recolor=-1
	"\i"	var_indqstringr
	"\""	string_dq	noeat
	"\\"	string_dq_esc	recolor=-1

:var_indqstringr Variable
	*	string_dq	recolor=-1
	"\c"	var_indqstringr
	"\""	string_dq	noeat
	"\\"	string_dq_esc	recolor=-1

:var_inbqstring Variable
	*	string_bq	recolor=-1
	"\i"	var_inbqstringr
	"\`"	string_bq	noeat
	"\\"	string_bq_esc	recolor=-1

:var_inbqstringr Variable
	*	string_bq	recolor=-1
	"\c"	var_inbqstringr
	"\`"	string_bq	noeat
	"\\"	string_bq_esc	recolor=-1

:maybe_method Builtin
	*		idle  recolor=-1
	"?"		idle_qmark 
	"%"		idle_hash
	"#"		sh_comment	recolor=-1
	"/"		slash
	"0-9"		first_digit	recolor=-1
	"'"		string_sq	recolor=-1
	"\""		string_dq	recolor=-1
	"\i"	ident		buffer
	"$"   php_var recolor=-1
	"{}"  brace recolor=-1
  ">" method  recolor=-2
  
:method Builtin
	*	idle	recolor=-1
	"\i\c"	method	recolor=-1

:idle_qmark Idle
	*		idle		noeat
	">"		idle recolor=-2 return

:idle_hash Idle
	*		idle	noeat
	">"		idle recolor=-2 return

:sh_comment Comment comment
	*		sh_comment
	"BFHNTX"	sh_comment	noeat call=comment_todo.comment_todo()
	"\n"		idle

:slash Idle
	*		idle		noeat
	"*"		comment		recolor=-2
	"/"		line_comment	recolor=-2

:comment Comment comment
	*		comment
	"*"		maybe_end_comment
	"BFHNTX"	comment		noeat call=comment_todo.comment_todo()

:maybe_end_comment Comment comment
	*		comment
	"/"		idle
	"*"		maybe_end_comment

:line_comment Comment comment
	*		line_comment
	"\n"		idle
	"BFHNTX"	line_comment	noeat call=comment_todo.comment_todo()

:string_sq Character string
	*		string_sq
	"\'"		idle
	"\\"		string_sq_esc	recolor=-1

:string_sq_esc CharacterEscape string
	*		string_sq
	"\n"		string_sq	recolor=-2

:string_dq String string
	*		string_dq
	"$"     var_indqstring recolor=-1
	"\""		idle
	"\\"		string_dq_esc	recolor=-1

:string_dq_esc StringEscape string
	*		string_dq
	"\n"		string_dq	recolor=-2
	
:string_bq String string
	*		string_bq
	"$"     var_inbqstring recolor=-1
	"\`"		idle
	"\\"		string_bq_esc	recolor=-1

:string_bq_esc StringEscape string
	*		string_bq
	"\n"		string_bq	recolor=-2
	
:first_digit Number
	*		idle	noeat
	"xX"		hex
	"."		float
	"0"		octal
	"1-9"		first_number

:octal Number
	*		idle	noeat
	"0-7"		octal

:hex Number
	*		idle	noeat
	"0-9A-Fa-f"	hex

:first_number Number
	*		idle	noeat
	"0-9"		first_number
	"."		float

:maybe_float Number
	*		idle	recolor=-2	noeat
	"0-9"		float		recolor=-2

:float Number
	*		idle	noeat
	"eE"		epart
	"0-9"		float

:epart Number
	*		idle	noeat
	"0-9+\-"	enum

:enum Number
	*		idle	noeat
	"0-9"		enum

:ident Idle
	*		idle		noeat strings
	"addslashes" 	builtin
	"array"		builtin
	"array_keys"	builtin
	"count"		builtin
	"date"		builtin
	"chr"		builtin
	"empty"		builtin
	"end"		builtin
	"header"	builtin
	"highlight_file"	builtin
	"htmlspecialchars"	builtin
	"isset"		builtin
	"shuffle"	builtin
	"strip_tags"	builtin
	"strlen"	builtin
	"strpos"	builtin
	"strrpos"	builtin
	"substr"	builtin
	"trim"		builtin
	"TRUE"		bool
	"FALSE"		bool
	"true"		bool
	"false"		bool
	"and"		oper
	"as"		oper
	"break"		loop
	"case"		label
	"class"		struct
	"continue"	loop
	"declare"	struct
	"default"	kw
	"die"		kw
	"do"		loop
	"echo"		stmt
	"else"		cond
	"elseif"	cond
	"eval"		kw
	"exception"	kw
	"exit"		kw
	"extends"	struct
	"for"		loop
	"foreach"	loop
	"function"	struct
	"global"	kw
	"if"		cond
	"include"	stmt
	"include_once"	stmt
	"list"		kw
	"new"		kw
	"or"		oper
	"print"		stmt
	"private"	storage
	"public"	storage
	"require"	stmt
	"require_once"	stmt
	"return"	stmt
	"static"	storage
	"switch"	cond
	"unset"		stmt
	"while"		loop
done
	"\c"	ident

:kw Keyword
	*	idle	noeat

:builtin Builtin
  * idle  noeat

:bool Boolean
  * idle  noeat

:var Variable
  * mark  noeat

:oper Operator
  * idle  noeat

:loop Loop
  * idle  noeat

:cond Conditional
  * idle  noeat

:stmt Statement
  * idle  noeat

:label Label
  * idle  noeat

:struct Structure
  * idle  noeat

:storage StorageClass
  * idle  noeat

.end