svn_blame
(PECL svn >= 0.3.0)
svn_blame — Get the SVN blame for a file
说明
Get the SVN blame of a file from a repository URL.
参数
repository_url-
The repository URL.
revision_no-
The revision number.
返回值
An array of SVN blame information separated by line which includes the revision number, line number, line of code, author, and date.
示例
示例 #1 svn_blame() example
<?php
$svnurl = 'http://svn.example.org/svnroot/foo/trunk/index.php';
print_r( svn_blame($svnurl) );
?>以上示例的输出类似于:
Array
(
[0] = Array
(
[rev] = 1
[line_no] = 1
[line] = Hello World
[author] = joesmith
[date] = 2007-07-02T05:51:26.628396Z
)
[1] = Array
...
参见
- svn_diff() - Recursively diffs two paths
- svn_logs()
- svn_status() - Returns the status of working copy files and directories
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。