嘿傢伙! 我有一個腳本,應該將圖像添加到數據庫中。它這樣做。唯一的問題是,它不僅增加了新的圖像,而且增加了現有的圖像。 我確定它是一個非常簡單的任務,對我來說太多了!檢查加工前的條目
所以這段代碼應該再次檢查一個條目是否存在,然後添加圖像如果它不存在。 謝謝:)
<?php
include('mysql.php');
if ($handle = opendir('images')) {
/* This is the correct way to loop over the directory. */
while (false !== ($file = readdir($handle))) {
if($file!='.' && $file!='..') {
$images[] = "('".$file."')";
}
}
closedir($handle);
}
$query = "INSERT INTO images (filename) VALUES ".implode(',', $images)." ";
if (!mysql_query($query)) {
print mysql_error();
}
else {
print "finished installing your images!";
}
?>
嘿我的朋友,謝謝你的時間,這似乎工作:) – Gerald 2011-05-22 19:15:49