Answers for "how to check ia folder if no have files in php"

PHP
0

how to check ia folder if no have files in php

<?php
    $pid = $_GET["prodref"];
    $dir = '/assets/'.$pid.'/v';
    $q = count(glob("$dir/*")) == 0;

    if ($q) {
        echo "the folder is empty"; 
    } else {
        echo "the folder is NOT empty";
    }
?>
Posted by: Guest on June-15-2021

Code answers related to "how to check ia folder if no have files in php"

Browse Popular Code Answers by Language