Sign in
eclipse
/
www.eclipse.org
/
indigo
/
094b8c62c0f9174a412390afa32dd1d66a05795d
/
.
/
highlights.php
blob: 377b899e42c787fa92e2d7d498d8c91e8f17d182 [
file
] [
log
] [
blame
]
<?
php
$items
=
file
(
"highlights.txt"
);
print
"["
;
$first
=
true
;
for
(
$i
=
0
;
$i
<
count
(
$items
);
$i
++){
if
(
$first
==
TRUE
){
$first
=
FALSE
;
print
'"'
;
}
else
{
print
',"'
;
}
print
addcslashes
(
$items
[
$i
],
"\\\"\n\r\t/"
)
.
'"'
;
}
print
"]"
;