|
svn_blameGet the SVN blame for a file Beschreibung
array svn_blame
( string
$repository_url
[, int $revision_no = SVN_REVISION_HEAD
] )Get the SVN blame of a file from a repository URL. Parameter-Liste
RückgabewerteAn array of SVN blame information separated by line which includes the revision number, line number, line of code, author, and date. Beispiele
Beispiel #1 svn_blame example
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
Array
(
[0] = Array
(
[rev] = 1
[line_no] = 1
[line] = Hello World
[author] = joesmith
[date] = 2007-07-02T05:51:26.628396Z
)
[1] = Array
...
Siehe auch
|