<?php
$repos = svn_repos_open($this->sourceRoot);
$fs = svn_repos_fs($repos);
$head = svn_fs_youngest_rev($fs);
$fsroot = svn_fs_revision_root($fs,$head);
echo svn_fs_is_file($fsroot,$path);
?>
svn_fs_is_file
(PECL svn >= 0.2.0)
svn_fs_is_file — Return true if the path points to a file, false otherwise
Açıklama
bool svn_fs_is_file
( resource
$root
, string $path
)Uyarı
Bu işlev hala belgelendirilmemiştir; sadece değiştirge listesi mevcuttur.
Return true if the path points to a file, false otherwise
Notlar
Uyarı
Bu işlev DENEYSELDİR. Bu işlevin davranışı, ismi ve belgeleri PHP'nin sonraki sürümlerinde hiçbir duyuru yapılmaksızın değiştirilebilir. Bu riski göze alamayacaksanız bu işlevi kullanmayın.
ytcheng at qq dot com
18-Dec-2010 01:16
