mysql データベース内の 2 つのテーブル間の関係を確立します
テーブル 1 ページ: (page_id, page_text, img_exist) => (ページ ID、ページコンテンツ、画像の有無 1 は存在します、0 は存在しません)
テーブル2 image: ( img_id,img_name)=>(image id, image name)
次に、テーブル 2 に 1 列を追加します: image: (img_id,img_name,page_id)
ここで、要件はすべての画像を分類することです。ページに含まれるページ ID。
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <?php $DBserver = "localhost"; $DBname = "new"; $DBuser = "root"; $DBpassword = ""; $con = mysql_connect("localhost","root",""); mysql_select_db("new"); $query = mysql_query("select page_id,page_text from pagecontents where img_exist > 0") or die(mysql_error() ); while($rows = mysql_fetch_array($query)) { $pid = $rows['page_id']; $ptext = $rows['page_text']; $ptext = mysql_real_escape_string($ptext); $ptext = preg_replace('/poweredby_mediawiki_88x31\.png/s','',$ptext); if(preg_match_all('/.+\.(gif|swf|jpg|png)/is',$ptext,$match)){ $ptext = $match[1][0]; $ptext = mysql_real_escape_string($ptext); } mysql_select_db("lookdb",$con); $sql = "update imgmulu set page_id = ('{$pid}') where img_name = ('{$ptext}')"; mysql_query($sql) or die(mysql_error()); } ?>