Home  >  Article  >  php教程  >  PHP数据流应用的一个简单例子

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

WBOY
WBOYOriginal
2016-06-13 10:49:52992browse

1  2 $count = 5;
 3 start:
 4 if($count  5 echo "Put Password: ";
 6 $handle = fopen ("php://stdin","r");
 7 $line = fgets($handle);
 8 if(trim($line) != '123456'){
 9     $count--;
10     if(!$count) goto error;
11     goto start;
12 }
13 goto success;
14 error:
15     echo "Please try after 1 hour! http://www.fanlishuqian.com";
16     goto out;
17 success:
18     echo "Logined!";
19 out:
20 ?>
执行结果:

 

 


摘自 专注web技术

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