mirror of
https://github.com/php/php-src.git
synced 2026-04-18 05:21:02 +02:00
20 lines
375 B
PHP
20 lines
375 B
PHP
--TEST--
|
|
readline() function - without input
|
|
--CREDITS--
|
|
Jonathan Stevens <info at jonathanstevens dot be>
|
|
User Group: PHP-WVL & PHPGent #PHPTestFest
|
|
--EXTENSIONS--
|
|
readline
|
|
--SKIPIF--
|
|
<?php
|
|
if (!function_exists('readline')) die("skip readline() not available");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
var_dump(readline());
|
|
var_dump(readline('Prompt:'));
|
|
?>
|
|
--EXPECTF--
|
|
bool(false)
|
|
%Abool(false)
|