svn_fs_is_file

(PECL svn >= 0.2.0)

svn_fs_is_fileReturn true if the path points to a file, false otherwise

Descrição

svn_fs_is_file ( resource $root , string $path ) : bool
Aviso

Esta função não está documentada; somente a lista de argumentos está disponível.

Return true if the path points to a file, false otherwise

Notas

Aviso

Esta função é EXPERIMENTAL. O comportamento, seu nome e documentação podem mudar sem aviso em futuras versões do PHP. Utilize por sua própria conta e risco.

add a note add a note

User Contributed Notes 1 note

up
0
ytcheng at qq dot com
13 years ago
<?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);
?>
To Top