我是靠谱客的博主 个性彩虹,这篇文章主要介绍asp textarea 多行数组分割处理方法,现在分享给大家,希望可以做个参考。

所以对应的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=1&aid=$aid&cid=$cid&link=".urlencode(base64_encode($flink));
$temp = str_replace("~link~",$flink,$tempStr);
$temp = str_replace("~server~",$serverName,$temp);
$downlinks .= $temp;
}
}

最后

以上就是个性彩虹最近收集整理的关于asp textarea 多行数组分割处理方法的全部内容,更多相关asp内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(93)

评论列表共有 0 条评论

立即
投稿
返回
顶部