应用场景:我们有知道一个模板的演示站地址,如:http://www.dede58.com/plus/demo_mb.php?aid=4491?1 我们如何在dede58里找到相应的模板呢。
很简单,我们可以通过aid=4491 直接搜索该id, 索引到相应的内容
实现的办法:
打开include>arc.searchview.class.php
找到278行,$ks = explode(' ',$this->Keywords); 在其上面加入以下代码:
//new add
if(is_numeric($this->Keywords)){
return " arc.id={$this->Keywords}";
}
即可
很简单,我们可以通过aid=4491 直接搜索该id, 索引到相应的内容
实现的办法:
打开include>arc.searchview.class.php
找到278行,$ks = explode(' ',$this->Keywords); 在其上面加入以下代码:
//new add
if(is_numeric($this->Keywords)){
return " arc.id={$this->Keywords}";
}
即可
未经允许不得转载! 作者:admin,转载或复制请以超链接形式并注明出处搜库资源网。
原文地址:https://sokuziyuan.com/zhimengjiaocheng/77299.html发布于:2019-01-26
还没有评论,来说两句吧...