一片空白
这段代码:
```php
if($_GET['dl']!="" && ($_COOKIE["dl"]=="" || ($_COOKIE["dl"]!="" && $_COOKIE["dl"]!=$_GET['dl']))){
$expire=time()+60*60*24*30;//一月
setcookie("dl", $_GET['dl'], $expire,'/');
}
if(preg_match('/(blackberry|configuration\/cldc|hp |hp-|htc |htc_|htc-|iemobile|kindle|midp|mmp|motorola|mobile|nokia|opera mini|opera |Googlebot-Mobile|YahooSeeker\/M1A1-R2D2|android|iphone|ipod|mobi|palm|palmos|pocket|portalmmm|ppc;|smartphone|sonyericsson|sqh|spv|symbian|treo|up.browser|up.link|vodafone|windows ce|xda |xda_)/i', $_SERVER['HTTP_USER_AGENT'])){
if($_SERVER['HTTP_HOST']==' http://localhost/03/'){
header('Location: http:// http://localhost/03/'.$_SERVER['REQUEST_URI']);
exit;
}
}
header('Content-Type: text/html; charset=utf-8');
$page_start_time = microtime(true); //程序开始执行时间
require './core/init.php';
/*
* core是框架核心存放目录
* Ylmf-PHP框架的入口点都是加载 init.php来初始化的
* */
```