我有这个代码来检索网站上的一些产品:
foreach($page1->find('.link_category') as $produit1)
echo $produit1->plaintext . '<br />';
我检索带有双引号的产品“,我想用什么来替换它(双引号)
感谢您的帮助
答案 0 :(得分:0)
foreach($page1->find('.link_category') as $produit1) {
$product = str_replace('"','',$produit1->plaintext);
echo $product;
}
我希望它有效:)