tutorial pengembangan web terbaru
 

PHP is_executable() Function


<Lengkap PHP Filesystem Referensi

Definisi dan Penggunaan

The is_executable() pemeriksaan fungsi apakah berkas yang ditentukan adalah executable.

Fungsi ini mengembalikan TRUE jika file tersebut executable.

Sintaksis

is_executable(file)

Parameter Deskripsi
file Wajib. Menentukan file untuk memeriksa

Tips dan Catatan

Note: Hasil dari fungsi ini cache. Gunakan clearstatcache() untuk menghapus cache.

Note: The is_executable() fungsi menjadi tersedia dengan Windows di PHP 5.0


Contoh

<?php
$file = "setup.exe";
if(is_executable($file))
  {
  echo ("$file is executable");
  }
else
  {
  echo ("$file is not executable");
  }
?>

Output dari kode di atas bisa menjadi:

setup.exe is executable

<Lengkap PHP Filesystem Referensi