vote up 1 vote down star

I want to split

$path = getenv('PATH');

into its components. How do I determine the separator char in an os-dependent fashion?

flag

5 Answers

vote up 4 vote down check

You can use the PATH_SEPARATOR constant, then the DIRECTORY_SEPARATOR constant to split the path if needed. See Directory Predefined Constants

link|flag
3  
You cannot use DIRECTORY_SEPARATOR for that. You must use PATH_SEPARATOR. First one is the character that separates folders from each other, path separator separates differents paths i.e. defined in PATH environmental variable. – RaYell Aug 11 at 10:09
That's what I get for doing too many things at once :| – Greg Aug 11 at 10:12
vote up 3 vote down

I know this works for the include_path - not sure about getenv('PATH'):

$paths = split(PATH_SEPARATOR, getenv('PATH'));
link|flag
include_path is a valid PATH style string for whatever system you are on: the same split techniques that work for one will work for the other. – Matthew Scharley Aug 11 at 10:10
vote up 2 vote down

Use the PATH_SEPARATOR constant.

link|flag
vote up 0 vote down

I seem to remember that Windows will accept both forward- and back-slashes as a file-separator, so you may not have to worry about it.

link|flag
I think he means the separator for the Entries in the PATH environment variable (e.g. ":" on *nix), not the separator inside the paths. – Chris089 Aug 11 at 10:24
Ahhhh...oops =) – ricebowl Aug 11 at 13:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.