3
有時我會看到「exec()」throws an error code 126 or 127。我在哪裏找到所有錯誤代碼及其相應的描述?PHP - 我在哪裏找到exec()的錯誤代碼?
有時我會看到「exec()」throws an error code 126 or 127。我在哪裏找到所有錯誤代碼及其相應的描述?PHP - 我在哪裏找到exec()的錯誤代碼?
在shell文檔中以及命令的文檔中。
從bash(1)
手冊頁,退出狀態部分:
If a command is not found, the child process created to execute it returns a status of 127. If a command is found but is not executable, the return status is 126.
¿如果PHP在Windows上運行?手冊頁介紹0到255之間的數字。它們的描述在哪裏? – Galled 2011-05-13 17:57:35
在shell文檔中以及命令的文檔中。 – 2011-05-13 18:25:44
你的回答讓我知道,或多或少知道去哪裏看看(http://en.tldp.org/LDP/abs/html/exitcodes.html)。只有我需要知道,如果在Windows中的錯誤代碼的exec()是相應的。 – Galled 2011-05-13 21:16:08