欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

PHP數(shù)據(jù)流應(yīng)用的一個簡單實(shí)例

 更新時間:2012年09月14日 23:45:12   作者:  
PHP數(shù)據(jù)流應(yīng)用的一個簡單實(shí)例代碼,需要的朋友可以參考下

復(fù)制代碼 代碼如下:

<?php
$count = 5;
start:
if($count < 5) echo "You can try {$count} time, ";
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:
?>

執(zhí)行結(jié)果:

相關(guān)文章

最新評論