每次我运行这部分脚本时,stript 都会停止工作。
$url = $this->getUrl . '?id=' . $this->apiKey . '&email=' . urlencode($this->email) . '&produkt[]=' . urlencode($this->product) . '&orderid=' . $this->order_id;
foreach ($this->products as $product) {
$url .= '&produkt[]=' . urlencode($product);
}
当我更改$url = $this->getUr ... ...
为$url = http://blablabla.com/blabla... ...
all 时工作正常。
错误在哪里?