SplFileInfo::isReadable

(PHP 5 >= 5.1.2)

SplFileInfo::isReadableTells if file is readable

Опис

public bool SplFileInfo::isReadable ( void )

Check if the file is readable.

Параметри

В цієї функції немає параметрів.

Значення, що повертаються

Returns TRUE if readable, FALSE otherwise.

Приклади

Приклад #1 SplFileInfo::isReadable() example

<?php
$info 
= new SplFileInfo(__FILE__);
var_dump($info->isReadable());

$info = new SplFileInfo('foo');
var_dump($info->isReadable());
?>

Наведений вище приклад виведе щось подібне до:

bool(true)
bool(false)

add a note add a note

User Contributed Notes

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