gmarche/vendor/phpunit/phpunit/tests/TextUI/phpt-stdin.phpt

12 lines
163 B
PHP

--TEST--
PHPT runner supports STDIN section
--STDIN--
Hello World
--FILE--
<?php
$input = file_get_contents('php://stdin');
echo $input;
?>
--EXPECT--
Hello World