I have a weird problem.
file_exists('/home/1/w/bla/www/bla')
I'm on a Windows server, and this returns true! The dir obviously doesn't exist on a Windows server. Anyone know why?
I have a weird problem.
file_exists('/home/1/w/bla/www/bla')
I'm on a Windows server, and this returns true! The dir obviously doesn't exist on a Windows server. Anyone know why?
PHP is smart enough to convert linux paths when on windows so file_exists('/home/1/w/bla/www/bla')
will check if the file c:\home\1\w\bla\www\bla
exists