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, 14 Jun 2013

view this page in

SplFileInfo::isExecutable

(PHP 5 >= 5.1.2)

SplFileInfo::isExecutableIndique si un fichier est exécutable

Description

public bool SplFileInfo::isExecutable ( void )

SplFileInfo::isExecutable() indique si un fichier est exécutable.

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

Retourne TRUE si le fichier est exécutable, FALSE sinon.

Exemples

Exemple #1 Exemple avec SplFileInfo::isExecutable()

<?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());
?>

L'exemple ci-dessus va afficher quelque chose de similaire à :

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