コード例 #1
0
ファイル: soap.php プロジェクト: indigophp/erp-stock-extra
 protected function request($url, array $options = array())
 {
     $options['driver'] = 'soap';
     $options['trace'] = true;
     $options['features'] = SOAP_SINGLE_ELEMENT_ARRAYS;
     return parent::request($url, $options);
 }
コード例 #2
0
ファイル: curl.php プロジェクト: indigophp/erp-stock-extra
 protected function _download($file = 'price')
 {
     $this->request($this->model->update);
     return parent::_download($file);
 }