我试图通过PHP函数访问svn日志。我尝试过很多例子,我也使用了this例子。请在下面找到我的示例代码:
public function getLog()
{
$cmd = "svn --non-interactive --no-auth-cache --trust-server-cert --username kk --password 123 log -l 5 --xml <svn repository path>";
$xmlData = simplexml_load_string(exec($cmd));
var_dump($xmlData);
}
但这不起作用,如下所示发生错误:
simplexml_load_string(): Entity: line 1: parser error : Premature end of data in tag log line 1
但我可以通过终端使用此命令访问svn log。