Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
344 views
in Technique[技术] by (71.8m points)

php - Why is there a PATH_SEPARATOR constant?

Isn't this / ?

Why is there a constant for it? It's not like it can change, right?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

PATH_SEPARATOR is the character used to separate many paths in a unique string (like include_path in php.ini).

Its value is ':' on a UNIX system and ';' on a Windows system.

What you're talking about ('/' on UNIX and '' on Windows) is the DIRECTORY_SEPARATOR constant.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...