扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
$conn =db2_connect($dbname, $dbuser, $dbpass); |
$fileContents = file_get_contents("products/p1.xml"); |
$dom = simplexml_load_string($fileContents); |
$prodID = (string) $dom["pid"]; |
$stmt =db2_prepare($conn, "INSERT INTO xmlproduct VALUES (?, ?)"); |
db2_execute($stmt, array($prodID, $fileContents); |
$fileContents = file_get_contents("$products/p1.xml"); $dom = simplexml_load_string($fileContents); |
$prodID = (string) $dom["pid"]; $prodName = (string) $dom->description->name; $prodDetails = (string) $dom->description->details; $prodPrice = (float) $dom->description->price; |
$images = array(); foreach($dom->description->images->image as $image) { switch((string) $image[type']) { case thumbnail':$prodImgThumb = (string) $image; $prodImgAlias = (string) $image[alias']; if(!$prodImgAlias) $prodImgAlias = NULL; $stmt = db2_prepare($conn, "INSERT INTO sqlimages (Pid, Type, Alias, Location) VALUES (?, ?, ?, ?)"); db2_execute($stmt, array($prodID, thumbnail', $prodImgAlias, $prodImgThumb)); case full': $prodImgFull = (string) $image; $prodImgAlias = (string) $image[alias']; if(!$prodImgAlias) $prodImgAlias = NULL; $stmt = db2_prepare($conn, "INSERT INTO sqlimages (Pid, Type, Alias, Location) VALUES (?, ?, ?, ?)"); db2_execute($stmt, array($prodID, full', $prodImgAlias, $prodImgFull)); } } |
if(!$prodBrand) $prodBrand = " "; if(!$prodCategory) $prodCategory = " "; if(!$prodImgFull) $prodImgFull = " "; |
$stmt = db2_prepare($conn, "INSERT INTO sqlproduct (Pid, Name, Details, Brand, Category, Price, Weight, Size, Description) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)"); db2_execute($stmt, array($prodID, $prodName, $prodDetails, $prodBrand, $prodCategory, $prodPrice, $prodWeight, $prodSize, $fileContents)); |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。