|
update : 2015.11.03
php.shukuma.com검색:
|
svn_blame(PECL svn >= 0.3.0) svn_blame — Get the SVN blame for a file 설명
array svn_blame
( string
$repository_url
[, int $revision_no = SVN_REVISION_HEAD
] )Get the SVN blame of a file from a repository URL. 인수
반환값An array of SVN blame information separated by line which includes the revision number, line number, line of code, author, and date. 예제
Example #1 svn_blame() example
<?php위 예제의 출력 예시:
Array
(
[0] = Array
(
[rev] = 1
[line_no] = 1
[line] = Hello World
[author] = joesmith
[date] = 2007-07-02T05:51:26.628396Z
)
[1] = Array
...
참고
|