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 put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -

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