1

我已经在 localhost 上尝试了此代码以从亚马逊愿望清单中提取项目:

$text = file_get_contents(trim($wishlist_link));

if (preg_match('~<form method="post" name="editItems" style="display: inline; margin: 0;" [^>]*>(.*?)</form>~si', $text, $body)) {}

它工作正常,但是当我为在线域尝试相同的代码时,它仅适用于亚马逊愿望清单的 10 个项目

4

1 回答 1

0

试试这个来抓取你的亚马逊愿望清单(适用于多页愿望清单)

https://github.com/doitlikejustin/amazon-wish-lister

于 2013-08-08T02:52:46.510 回答