|
svn_log
Returns the commit log messages of a repository URL
(PECL svn:0.1-0.2)
svn_log() returns the complete history of the item at the repository URL
repos_url, or the history of a specific revision
if revision_no is set. This function is equivalent
to
Warning:
For repositories with large histories, the output may
be quite large (one array item for every revision of the item).
This function does not support the
Parameters
Return ValuesOn success, this function returns an array file listing in the format of: [0] => Array, ordered most recent (highest) revision first
Note:
The output will always be a numerically indexed array of arrays, even when there are none or only one log message(s).
The value of Table 316. Actions
If no changes were made to the item, an empty array is returned. Notes
Warning:
This function is EXPERIMENTAL. The behaviour of this function, the name of this function, and anything else documented about this function may change without notice in a future release of PHP. Use this function at your own risk. ExamplesExample 2498. svn_log() example<?php The above example will output something similar to: Array Example 2499. Simulating
|
» SVN documentation on svn log |