Subversion Repositories php-qbpwcf

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
14 liveuser 1
<?php
2
 
3
#使用命名空間qbpwcf
4
namespace qbpwcf;
5
 
6
#匯入外部套件
7
include("../../allInOne.php");
8
 
9
#執行999次
10
for($i=0;$i<1;$i++){
11
 
12
	#睡眠5秒
13
	sleep(5);
14
 
15
	}#for end
16
 
17
#如果有get變數
18
if(isset($_GET)){
19
 
20
	#印出內容
21
	var_dump($_GET);
22
 
23
	}#if end	
24
 
25
 
26
?>