Sign in
eclipse
/
gerrit
/
www.eclipse.org
/
kepler
/
401d6943026c16c9c481c76f694fa2e7eae2abb3
/
.
/
includes
/
highlights.php
blob: b388e02af511664ce114de023686c364b8d332dc [
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
"]"
;