Posts Tagged ‘php配置’

  查看php有关的详细配置信息

posted on 17 2 月, 2008 BY admin
No Comments »

答:创建一个有如下内容的phpinfo.php文件,上传到public_html目录里,通过浏览器访问即可。

引用:

<?php

// Show all information, defaults to INFO_ALL
phpinfo();

// Show just the module information.
// phpinfo(8) yields identical results.
//phpinfo(INFO_MODULES);

?>