laravel5.1 - PHP中使用Soap出現Function doesn't exist問題,如何解決?

來源:互聯網
上載者:User
在下新手,正在用 Laravel架構和 xampp搭建一個後台管理系統。因為有需要做webservice介面功能,使用到了php中的soap,然而開發過程中出現了 Function doesn't exist的問題,卡了好久,因此前來求助。具體如下:

有這麼兩個php檔案:
①client.php,作為soap用戶端
路徑:C:\xampp\htdocs\my_project\app\Services\client.php

 "http://localhost/my_project/app/Services/server.php", 'uri' => "http://localhost/", 'encoding' => 'UTF-8'));    echo $client->hello();} catch (SoapFault $fault) {    echo "Error: ", $fault->faultcode, ", String: ", $fault->getMessage();}

②server.php,作為soap服務端
路徑:C:\xampp\htdocs\my_project\app\Services\server.php

 "localhost"));    $soap->addFunction('hello');    $soap->handle();}catch (\SoapFault $fault) {    echo "Error: ", $fault->faultcode, ", String: ", $fault->faultstring;}function hello(){    $model = new User;    return "hello";}

因為有需要用到模板,因此在server.php中使用了namespace,並把User類用use的方式引用進來。但是這樣一來server.php中的SoapServerSoapFault前面就要加上斜杠,變成\SoapServer\SoapFault

最後在瀏覽器中運行C:\xampp\htdocs\my_project\app\Services\client.php時卻出現了Error: SOAP-ENV:Server, String: Function 'hello' doesn't exist錯誤提示,百度Google一直未果,希望有經驗的前輩能指點一下,不勝感激!

回複內容:

在下新手,正在用Laravel架構和xampp搭建一個後台管理系統。因為有需要做webservice介面功能,使用到了php中的soap,然而開發過程中出現了Function doesn't exist的問題,卡了好久,因此前來求助。具體如下:

有這麼兩個php檔案:
①client.php,作為soap用戶端
路徑:C:\xampp\htdocs\my_project\app\Services\client.php

 "http://localhost/my_project/app/Services/server.php", 'uri' => "http://localhost/", 'encoding' => 'UTF-8'));    echo $client->hello();} catch (SoapFault $fault) {    echo "Error: ", $fault->faultcode, ", String: ", $fault->getMessage();}

②server.php,作為soap服務端
路徑:C:\xampp\htdocs\my_project\app\Services\server.php

 "localhost"));    $soap->addFunction('hello');    $soap->handle();}catch (\SoapFault $fault) {    echo "Error: ", $fault->faultcode, ", String: ", $fault->faultstring;}function hello(){    $model = new User;    return "hello";}

因為有需要用到模板,因此在server.php中使用了namespace,並把User類用use的方式引用進來。但是這樣一來server.php中的SoapServerSoapFault前面就要加上斜杠,變成\SoapServer\SoapFault

最後在瀏覽器中運行C:\xampp\htdocs\my_project\app\Services\client.php時卻出現了Error: SOAP-ENV:Server, String: Function 'hello' doesn't exist錯誤提示,百度Google一直未果,希望有經驗的前輩能指點一下,不勝感激!

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.