|
użytkowników online: 18
|
OPINIE UŻYTKOWNIKÓW
|
Uważam, że serwis jest najlepszy na świecie. Wykonany rzetelnie, a wszystkie skrypty sa dopracowane. Zamieszczony materiał godny mistrza. Jestem programistą od wielu lat i bez tego serwisu nie istnieje. Upraszacza życie każdemu programiście. Imponujący jest fakt, że do twórcy serwisu zawsze można się zwrócić z prośbą o pomoc i uzyskuje się ją w bardzo krótkim czasie. Najważniejsze w tym wszystkim jest to, że można korzystać z witryny za symboliczną opłatą.
Marcin Kowalski Multinet Polska
|
|
PODRĘCZNIK PHP 5.x, 4.x, 3.x - częściowo spolszczony / źródło: www.php.net
[Spis]
[A]
[B]
[C]
[D]
[E]
[F]
[G]
[H]
[I]
[J]
[K]
[L]
[M]
[N]
[O]
[P]
[Q]
[R]
[S]
[T]
[U]
[V]
[X]
[W]
[Z]
is_executable (PHP 3, PHP 4, PHP 5) is_executable -- Mówi czy plik jest wykonywalny Opisbool is_executable ( string nazwa_pliku )
Zwraca TRUE jeśli plik istnieje i jest wykonywalny.
is_executable() w Windows
jest dostępna w wersji PHP 5.0.0.
Przykład 1. is_executable() przykład |
<?php
$file = '/home/vincent/somefile.sh';
if (is_executable($file)) {
echo $file.' jest wykonywalny';
} else {
echo $file.' nie jest wykonywalny';
}
?>
|
|
Notatka: Wyniki działania tej funkcji są
buforowane. Zobacz opis funkcji clearstatcache() aby uzyskać
więcej informacji.
Podpowiedź: Od wersji 5.0.0 PHP ta funkcja
może być użyta także z niektórymi wrapperami URL. Zobacz
Dodatek L aby uzyskać listę wrapperów które obsługują
funkcjonalność z rodziny stat().
Patrz także: is_file() i
is_link().
User Contributed NotesBuuyo
06-Aug-2004 12:51
The change doesn't appear to be documented, so I thought I would mention it. In php5, as opposed to php4, you can no longer rely on is_executable to check the executable bit on a directory in 'nix. You can still use the first note's method to check if a directory is traversable:
@file_exists("adirectory/.");
david at littlesystems dot com dot au
02-Jun-2002 08:38
to test whether the directory /home/david is executable (regardless of whether it is readable or writeable), issue the command:
$my_isWriteable = @file_exists("/home/david/.")
the @ gets rid of the warning when this command fails when the directory is not executable.
drtebi at hotmail dot com
09-Feb-2001 05:12
[Editor's Note: This is the expected behavior (at least on most Unix-like systems). If a directory is not executable, then you cannot get details on the files in the directory - this includes the permissions.
--zak@php.net]
This does not work on directories!
look at this example:
if(is_file("foo/bar"))
print "found it";
if "bar" exists, but directory "foo" is not executable, you will NOT get "found it" as result.
|