ホームページ >バックエンド開発 >PHPチュートリアル >PHP 5.4 で言及されているいくつかの小さな問題
PHP 5.4 で言及されているいくつかの問題
問題 I. PHP 注意: 変数参照のみを参照によって返す必要があります
関数のデバッグ時にエラーを返す :PHP 注意: 変数参照のみを返す必要があります/projects/ebay_api/tradding_api/EbatNsSamples/EbatNs/EbatNs_ServiceProxy.php の 979 行目を参照
function &GetSellerList($request) { $request->setVersion(EBAY_WSDL_VERSION); return ($res = & $this->call('GetSellerList', $request);); }次のように変更します:
function &GetSellerList($request) { $request->setVersion(EBAY_WSDL_VERSION); $res = & $this->call('GetSellerList', $request); return ($res); }
$this->_parser = &new EbatNs_ResponseParser( &$this, $tns, $this->_parserOptions );
$this->_parser = &new EbatNs_ResponseParser( $this, $tns, $this->_parserOptions );