Possible Values For: PHP_OS

前端 未结 3 1617
情歌与酒
情歌与酒 2020-12-04 12:11

Is there a place to find a list of the possible values for the PHP predefined constant PHP_OS ? I\'d like to use this value for a system requirements check, but

3条回答
  •  攒了一身酷
    2020-12-04 12:48

    I think a better solution to do a 'requirement check' would be to actually use things that you need to know work properly and see what happens.

    For example, there are constants for directory separators, functions like realpath(), etc to deal with directories on different operating systems.

    What, specifically, are you trying to do?

提交回复
热议问题