Isn't this / ?
Why is there a constant for it? It's not like it can change, right?
|
|
|
PATH_SEPARATOR is the character used to separate many pathes in a unique string (like include_path in php.ini). Its value is ':' on a UNIX system, ';' on a Windows system. What you're talking about ('/' on UNIX, '\' on Windows) is DIRECTORY_SEPARATOR constant ;) |
|||||
|
|
Ooops this is about the
|
||||
|
|
|
As your original question states: "Why is there a PATH_SEPARATOR constant?", windows uses a semi-colon However I think you've mistaken PATH_SEPARATOR with DIRECTORY_SEPARATOR PATH_SEPARATOR devices multiple paths up in the same string. For example when used in windows environment variables. c:\path\to\a DIRECTORY_SEPARATOR separates the directories within the path: In Windows
In other systems
As mentioned by others, windows also accepts |
|||||||||||
|