repo.or.cz
/
mediawiki.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge "Update OOUI to v0.51.5"
[mediawiki.git]
/
tests
/
phpunit
/
includes
/
shell
/
bin
/
echo_args.php
blob
3317be5b54bb4f8fb5aca098d7696daf32338c8c
1
<
?php
2
3
if
(
PHP_SAPI
!==
'cli'
) {
4
exit
(
1
);
5
}
6
7
for
(
$i
=
1
;
$i
<
count
(
$argv
);
$i
++
) {
8
fprintf
(
STDOUT
,
"
%s
"
,
$argv
[
$i
] );
9
10
if
(
$i
+
1
<
count
(
$argv
) ) {
11
fprintf
(
STDOUT
,
" "
);
12
}
13
}