downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

SplFileInfo::isFile> <SplFileInfo::isDir
[edit] Last updated: Fri, 24 May 2013

view this page in

SplFileInfo::isExecutable

(PHP 5 >= 5.1.2)

SplFileInfo::isExecutableTells if the file is executable

Descrierea

public bool SplFileInfo::isExecutable ( void )

Checks if the file is executable.

Parametri

Această funcție nu are parametri.

Valorile întoarse

Returns TRUE if executable, FALSE otherwise.

Exemple

Example #1 SplFileInfo::isExecutable() example

<?php
$info 
= new SplFileInfo('/usr/bin/php');
var_dump($info->isExecutable()); 

$info = new SplFileInfo('/usr/bin');
var_dump($info->isExecutable());

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

Exemplul de mai sus va afișa ceva similar cu:

bool(true)
bool(true)
bool(false)



add a note add a note User Contributed Notes SplFileInfo::isExecutable - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites