Dutch PHP Conference 2025 - Call For Papers

svn_blame

(PECL svn >= 0.3.0)

svn_blameGet the SVN blame for a file

Опис

svn_blame(string $repository_url, int $revision_no = SVN_REVISION_HEAD): array

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

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top