File: php.jsf.in

package info (click to toggle)
joe 4.4-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 6,800 kB
  • ctags: 3,201
  • sloc: ansic: 49,924; sh: 4,279; makefile: 171; csh: 26
file content (305 lines) | stat: -rw-r--r-- 4,849 bytes parent folder | download | duplicates (2)
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
# JOE syntax highlight file for PHP
# modified by Eric Lin

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

# Define no. sync lines
# You can say:
# -200     means 200 lines
# -        means always start parsing from beginning of file when we lose sync
#          if nothing is specified, the default is -50

-

# Define colors

=Idle
=Comment 	green
=Constant 	cyan
=Constant_sq 	blue
=Escape 	bold cyan
=Keyword 	bold
=Var  red
=Methods  bold

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

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

:call_failed Var
	*	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  Methods
  * idle  noeat
	
:php_var Var
  * idle noeat
  "\c" php_var

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

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

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

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

:maybe_method Methods
	*		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 Methods
  *   idle  recolor=-1
  "\i" method  recolor=-1

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

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

:sh_comment Comment
	*		sh_comment
	"\n"		idle

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

:comment Comment
	*		comment
	"*"		maybe_end_comment

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

:line_comment Comment
	*		line_comment
	"\n"		idle


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

:string_sq_esc Escape
	*		string_sq
	"\n"		string_sq	recolor=-2

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

:string_dq_esc Escape
	*		string_dq
	"\n"		string_dq	recolor=-2
	
:string_bq Constant
	*		string_bq
	"$"     var_inbqstring recolor=-1
	"\`"		idle
	"\\"		string_bq_esc	recolor=-1

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

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

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

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

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

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

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

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

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

:kw Keyword
	*	idle	noeat

:meth Methods
  * idle  noeat

:var  Var
  * mark  noeat

.end