<?php
$repos = svn_repos_open($this->sourceRoot);
$fs = svn_repos_fs($repos);
$head = svn_fs_youngest_rev($fs);
$fsroot = svn_fs_revision_root($fs,$head);
echo svn_fs_is_file($fsroot,$path);
?>
(PECL svn >= 0.2.0)
svn_fs_is_file — 确定路径是否指向文件
根目录
路径
此函数为实验性功能。此函数的行为、名称和相关文档可能会在PHP的未来版本中发生更改,恕不另行通知。使用此函数需自行承担风险。
<?php
$repos = svn_repos_open($this->sourceRoot);
$fs = svn_repos_fs($repos);
$head = svn_fs_youngest_rev($fs);
$fsroot = svn_fs_revision_root($fs,$head);
echo svn_fs_is_file($fsroot,$path);
?>