php glob not working on localhost XAMPP -


i'm trying php files folder on xampp. on linux server had no trouble using code, on windows machine seems impossible.

this path folder copied explorer:

c:\xampp\htdocs\project\pages 

this code:

$diruserpath = dirname(dirname(dirname(__file__))). "\pages"; $diradmin = glob($diruserpath . "*.php"); var_dump($diruserpath); var_dump($diradmin); 

and result code:

string(29) "c:\xampp\htdocs\project\pages" array(0) { }  

glob installed , there php-files in pages folder


Comments

Popular posts from this blog

'hasOwnProperty' in javascript -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

android - Unable to generate FCM token from dynamically instantiated Firebase -