Home >Backend Development >PHP Tutorial >PHP数据流应用的一个简单实例_PHP

PHP数据流应用的一个简单实例_PHP

WBOY
WBOYOriginal
2016-06-01 12:10:13844browse

复制代码 代码如下:
$count = 5;
start:
if($count echo "Put Password: ";
$handle = fopen ("php://stdin","r");
$line = fgets($handle);
if(trim($line) != '123456'){
$count--;
if(!$count) goto error;
goto start;
}
goto success;
error:
echo "Please try after 1 hour!";
goto out;
success:
echo "Logined!";
out:
?>

执行结果:
PHP数据流应用的一个简单实例_PHP

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn