|
svn_commitSends changes from the local working copy to the repository 説明
array svn_commit(string
$log , array $targets , bool $recursive = true )
Commits changes made in the local working copy files enumerated in
the
パラメータ
戻り値Returns array in form of: array( 0 => integer revision number of commit 1 => string ISO 8601 date and time of commit 2 => name of committer )
Returns 例
例1 Basic example This example commits the calculator directory to a repository, using the username Bob and the password abc123 (hopefully, his password is stronger):
上の例の出力は以下となります。 array( 0 => 1415, 1 => '2007-05-26T01:44:28.453125Z', 2 => 'Bob' ) 注意警告
この関数は、 実験的 なものです。この関数の動作・ 名前・その他ドキュメントに書かれている事項は、予告なく、将来的な PHP のリリースにおいて変更される可能性があります。 この関数は自己責任で使用してください。 |