首页 > 代码库 > [PHP]How to get the system info?
[PHP]How to get the system info?
In my daily work, i use Ruby, Python and PHP. In the Ruby language, we can leverage the RubyConfig module to get the all of the system info which the Ruby run-time resides in. There are also os and system module in the Python world to harness the system and platform information. However, it is much easier to get the same result through PHP because the PHP language offers some global constant variables and built-in functions.
<?php //How to get the system variables? echo PHP_OS; echo php_uname(); echo getcwd(); /* By default, the PHP offeres some constant variable, built-in function and class that we can harness to get the info we need */
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。