“Direktori PHP ada” Kode Jawaban

periksa direktori ada dalam php

<?php
$directory = "./videos/category/";
if (!file_exists($directory)) {
  mkdir($directory, 0777, true);
}
?>
Glorious Gaur

ada file php

<?php
$filename = '/path/to/foo.txt';

if (file_exists($filename)) {
    echo "The file $filename exists";
} else {
    echo "The file $filename does not exist";
}
?>
The Red-est of Firebreaks

Direktori PHP ada

$directory = "/var/www/videos/";
if (file_exists($directory) && is_dir($directory))
{
  echo "Sure, exists and is dir";
}else{
  echo "Not exists. Creating...";
  mkdir($directory, 0777, true);
}
Tiago F2

PHP Periksa apakah ada folder


<?php
$filename = '/path/to/foo.txt';

if (file_exists($filename)) {
    echo "The file $filename exists";
} else {
    echo "The file $filename does not exist";
}
?>

Encouraging Eagle

Jawaban yang mirip dengan “Direktori PHP ada”

Pertanyaan yang mirip dengan “Direktori PHP ada”

Lebih banyak jawaban terkait untuk “Direktori PHP ada” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya