阅读:20回复:0

在include/common.file.func.php中加入下载来源,怎么修改啊

楼主#
更多 发布于:2025-01-19 13:51
function getDownUrlList($url,$starget,$listyle='li',$linkstr=false){
 global $cfg_isalertwin;
 $listyle='li';
 if(empty($url)) return '';
 if($starget!=""){
 $target=" target=\"".$starget."\"";
 }else{
 $target=" target=\"_blank\"";
 }
 $urlArray=explode("#",$url);
 $urlCount=count($urlArray);
 $urlStr="";
 for($i=0;$i<=$urlCount;$i++){
 if(!empty($urlArray[$i])){
 $singleUrlArray=explode("$",$urlArray[$i]);
 $urlStr.="<".$listyle.">来源XXX<a title='".$singleUrlArray[0]."' href='".$singleUrlArray[1]."'".$target.">".($linkstr?$singleUrlArray[1]:$singleUrlArray[0])."</a></".$listyle.">";
 }
 }
 return $urlStr;
}

中加入下载来源,怎么修改啊
在模板中用IF实在没法实现,不得不修改
游客

返回顶部