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
Localisation updates from https://translatewiki.net.
[mediawiki.git]
/
tests
/
phpunit
/
includes
/
shell
/
bin
/
stdout_stderr.php
blob
7f07269b67ab961e67ab009037c76ac0c788513d
1
<
?php
2
3
if
(
PHP_SAPI
!==
'cli'
) {
4
exit
(
1
);
5
}
6
7
file_put_contents
(
"php://stdout"
,
$argv
[
1
] );
8
if
(
isset
(
$argv
[
2
] ) ) {
9
file_put_contents
(
"php://stderr"
,
$argv
[
2
] );
10
}