Home > php教程 > php手册 > body text

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

WBOY
Release: 2016-06-13 10:49:52
Original
1033 people have browsed it

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技术

source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template