当使用以下从 Web 服务中检索对象的代码时,我发现在组合这些行后速度下降了大约 0.5 秒。
$getChildren = $OKMDocument->getChildren(array('token' => $token, 'path' => $path));
$fileArray = $getChildren->return;
到
$fileArray = $OKMDocument->getChildren(array('token'=> $token, 'path' => $path))->return;
有没有一种简单的方法来确定为什么这会导致这样的性能下降?
编辑:
它是本地托管的 Web 服务。
$OKMAuth = new SoapClient('http://localhost:8080/OpenKM/services/OKMAuth?wsdl');
$OKMDocument = new SoapClient('http://localhost:8080/OpenKM/services/OKMDocument?wsdl');