首页 > Web开发 > 详细

[PHP]How to get the system info?

时间:2014-07-08 12:47:46      阅读:295      评论:0      收藏:0      [点我收藏+]

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


[PHP]How to get the system info?,布布扣,bubuko.com

[PHP]How to get the system info?

原文:http://blog.csdn.net/wonderfan/article/details/37320615

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!