mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
17 lines
229 B
PHP
17 lines
229 B
PHP
--TEST--
|
|
readline(): Basic test
|
|
--CREDITS--
|
|
Milwaukee PHP User Group
|
|
#PHPTestFest2017
|
|
--EXTENSIONS--
|
|
readline
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(readline('Enter some text:'));
|
|
|
|
?>
|
|
--STDIN--
|
|
I love PHP
|
|
--EXPECTF--
|
|
%Astring(10) "I love PHP"
|