[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 */


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章