我是 php 中的 SOAP 新手。在我的 Apache 中启用了 SOAP。我有一个示例代码。该代码包含该行require_once('SOAP/Client.php');
。运行文件时出现致命错误,例如Warning: require_once(SOAP/Client.php) [function.require-once]: failed to open stream:
. 我是否需要将 SOAP 包放在我的示例文件夹中。如果是的话,也会出现一些错误。我该如何处理。请指教。
下面是我的代码,
`<?php
// bind SOAP/Client.php -> path of the php file
require_once "SOAP/Client.php";
// URI delivered to web service
$sc = new SOAP_Client("http://domain/SOAP/Server.php");
// start call function to use the function of the Web Service
$parameter = array();
$result = $sc->call ("now", &$parameter, "urn:TimeSerivce");
// print result
print $result."\n";
?>`
提前致谢。