Contact: aviboots(AT)netvision.net.il
40,937 questions
53,400 answers
573 users
/* bool is_dir ( string $filename ) */ $s = "c:/xampp"; if (is_dir($s)) echo "$s is a directory"; else echo "$s is not a directory"; /* run: c:/xampp is a directory