晚饭 米汤 半碗,食红薯半只。下午吃苹果半只。
晚上下了决心,终于完成了一段程序,批量替换了中药方大全网站文章里的超级链接。备忘如下:
<HTML>
<HEAD>
<META http-equiv=Content-Type content="text/html; charset=utf-8">
<TITLE>帝国网站管理系统 - 最安全、最稳定的开源CMS系统</TITLE>
</head>
<body>
<?php
$conn=mysql_connect("localhost","root","******");
mysql_query("SET NAMES 'utf8'", $conn);
mysql_select_db("sq8******");
$sql="SELECT * FROM phome_ecms_news_data_1 where instr(newstext,'</a>')>0";
$result=mysql_query($sql);
while($row=mysql_fetch_array($result)){
$myText=ereg_replace("<a [^>]*>|</a>","",$row["newstext"]);
$newsql="update phome_ecms_news_data_1 set newstext='".$myText."' where id=".$row["id"];
mysql_query($newsql);
echo $row["id"]." ok!<br />";
}
mysql_close($conn);
?>
</BODY>
</HTML>
===去掉keyboard左边的逗号=======================
update phome_ecms_news set keyboard=right(keyboard,char_length(keyboard)-1) where left(keyboard,1)=',';
[此帖子已被 海蓝港湾 在 2013-10-21 5:51:14 编辑过]