【发布时间】:2019-10-22 17:45:35
【问题描述】:
致命错误:访问未声明的静态属性: DTS\eBaySDK\Constants\GlobalIds::$ 剥离 /home/jimi13/public_html/dealpopup.com/ebayapi/finding/mine.php 第 334 行
$stripped = str_replace(' ', '', $country);
$stripped = preg_replace('/\s+/', '', $stripped);
echo $stripped;
需要把它剥离出来
$service = new Services\FindingService([
'credentials' => $config['production']['credentials'],
'globalId' => Constants\GlobalIds::US
]);
需要把这个放进去,但是会报错
$service = new Services\FindingService([
'credentials' => $config['production']['credentials'],
'globalId' => Constants\GlobalIds::$stripped
]);
【问题讨论】:
-
感谢您的帮助,我还不能发送我需要的东西。我正在尝试发送变量 $stripped 来代替美国。我将如何实现这一目标