-1

每次我运行这部分脚本时,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 时工作正常。

错误在哪里?

4

2 回答 2

0

$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 = $getUrl . '?id=' . $apiKey . '&email=' . urlencode($this->email) . '&produkt[]=' . urlencode($product) . '&orderid=' . $order_id;

$this->在我的脚本中没有定义,所以删除它后,脚本工作正常。但是每个人都必须$product在创建 url 之前定义。它适用于我的脚本!

于 2013-09-06T12:35:09.143 回答
0

是的,将“php_flag display_errors on”设置到该文件夹​​中的 .htaccess 文件中,您将看到问题出在哪里。

于 2013-09-02T17:38:35.830 回答