u013478024 2023-02-07 00:34 采纳率: 60%
浏览 157
已结题

关于#php#根据url判断选择加载模板应该如何解决?会的速来捡钱!

拿到一套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- 则指向一个域名或页面均可!

判断后能正常输出就行,会的相当于捡钱!佣金只给首位提供正确答案者!

  • 写回答

4条回答 默认 最新

  • 社区专家-Monster-XH 2023-02-07 00:52
    关注
    
    function read_templates(){
        if($_SERVER['REQUEST_URI']=='/'||$_SERVER['REQUEST_URI']==''){
            $templates_content = file_get_contents('data/templates/index.html');
     
        }else{
            global $isspider;
            if(preg_match('/v-[\w]+\.html/', $_SERVER['REQUEST_URI'])) {
                $templates_content = file_get_contents('data/templates/v.html');
            }else if(preg_match('/w-[\w]+\.html/', $_SERVER['REQUEST_URI'])) {
                $templates_content = file_get_contents('data/templates/w.html');
            }else 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;
    }
    
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录
查看更多回答(3条)

报告相同问题?

问题事件

  • 系统已结题 2月15日
  • 已采纳回答 2月7日
  • 创建了问题 2月7日

悬赏问题

  • ¥15 Python语言实验
  • ¥15 我每周要在投影仪优酷上自动连续播放112场电影,我每一周遥控操作一次投影仪,并使得电影永远不重复播放,请问怎样操作好呢?有那么多电影看吗?
  • ¥20 电脑重启停留在grub界面,引导出错需修复
  • ¥15 matlab透明图叠加
  • ¥50 基于stm32l4系列 使用blunrg-ms的ble gatt 创建 hid 服务失败
  • ¥150 计算DC/DC变换器平均模型中的参数mu
  • ¥25 C语言代码,大家帮帮我
  • ¥15 请问以下文字内容及对应编码是用了什么加密算法或压缩算法呢?
  • ¥50 关于#html5#的问题:H5页面用户手机返回的时候跳转到指定页面例如(语言-javascript)
  • ¥15 无法使用此凭据登录,因为你的域不可用,如何解决?(标签-Windows)