如果您在证书验证方面遇到问题,例如:
PHP Warning: svn_log(): svn error(s) occured 175002 (RA layer request failed) OPTIONS of 'https://example.com/your/repos/path': Server certificate verification failed: issuer is not trusted
请尝试以下两个步骤:
1.运行
"svn log https://example.com/your/repos/path"
在命令行上,并在出现提示时输入“p”以永久接受证书。
2.在调用其他 svn 函数之前,请使用以下设置 svn_auth_set_parameter()
<?php
svn_auth_set_parameter(SVN_AUTH_PARAM_DEFAULT_USERNAME, '你的svn用户名');
svn_auth_set_parameter(SVN_AUTH_PARAM_DEFAULT_PASSWORD, '你的svn用户密码');
svn_auth_set_parameter(PHP_SVN_AUTH_PARAM_IGNORE_SSL_VERIFY_ERRORS, true); // <--- 针对证书问题很重要!
svn_auth_set_parameter(SVN_AUTH_PARAM_NON_INTERACTIVE, true);
svn_auth_set_parameter(SVN_AUTH_PARAM_NO_AUTH_CACHE, true);
var_dump(svn_log('https://example.com/your/repos/path'));
?>
这适用于低于 1.6 的 SVN 客户端库!