所以對應的asp處理代碼如下
復制代碼 代碼如下:
dedearr=split(xiangguanid2,chr(13)) '分割成數組
for dede=0 to ubound(dedearr)-1 '數組長度減一,因為最后有兩個chr(13)換行。
dedearr2=split(dedearr(dede),"|")
dedetitle=dedearr2(1)
dedeurl=dedearr2(0)
if dedetitle>"" and dedeurl>"" then
xiangguanart2=xiangguanart2"li>a href="""dedeurl""" title="""dedetitle""" target=""_blank"">"dedetitle"/a>/li>"
end if
next
end if
php的的處理代碼 參考了(dedecms)
復制代碼 代碼如下:
$cfg_softinfos['sites'] = ereg_replace("\n{1,}","\n",str_replace("\r","\n",$cfg_softinfos['sites']));
$sites = explode("\n",trim($cfg_softinfos['sites']));
foreach($sites as $site)
{
if(trim($site)=='') continue;
list($link,$serverName) = explode('|',$site);
if(!eregi("^(http|ftp)://",$firstLink)) $flink = trim($link).$firstLink;
else $flink = $firstLink;
if($cfg_softinfos['gotojump']==1) $flink = $phppath."/download.php?open=1aid=$aidcid=$cidlink=".urlencode(base64_encode($flink));
$temp = str_replace("~link~",$flink,$tempStr);
$temp = str_replace("~server~",$serverName,$temp);
$downlinks .= $temp;
}
}
您可能感興趣的文章:- asp取得數組中的最大值的方法
- asp下使用數組存放數據的代碼
- asp 得到動態數組中元素的個數
- asp.net 數組中字符串替換的幾種方式
- asp 動態數組 提供Add、Insert、Remove、RemoveAt、Search等方法。
- asp.net 字符串、二進制、編碼數組轉換函數
- asp.net通過js實現Cookie創建以及清除Cookie數組的代碼
- asp 數組 重復刪除函數(腳本之家增強版)
- ASP 過濾數組重復數據函數(加強版)
- ASP 使用Filter函數來檢索數組的實現代碼
- asp數組的使用介紹
- Asp與JS的數組和字符串下標介紹
- asp中使用redim、preserve創建動態數組實例
- ASP定義數組方法的技巧