拿到一套php程序,现在需要加几个判断,根据url中的参数决定打开的模板文件
目前运行没有错误,可以正常输出!
function read_templates(){
if($_SERVER['REQUEST_URI']=='/'||$_SERVER['REQUEST_URI']==''){
$templates_content = file_get_contents('data/templates/index.html');
}else{
global $isspider;
if($isspider==1) {
$templates_content = file_get_contents('data/templates/spider.html');
}else{
$templates_content = file_get_contents('data/templates/show.html');
}
}
return $templates_content;
}
目前没有报错!
自己不会写!
我想要 在$isspider 中添加判断:
1、在url中含有 “v-123.html” 则调用 v的模板,含有 “w-abc.html” 则调用 w的模板(v-和w-后面是表示任意字符和数字,所以只能能用v-或w-做判断)
2、若url中不含有 v-或w- 则指向一个域名或页面均可!
判断后能正常输出就行,会的相当于捡钱!佣金只给首位提供正确答案者!