php学习积累(工作积累、笔试积累,不断增加)

工作中或者笔试题中的一些重要积累,整理一下,方便以后查阅,也希望能给其他朋友带来方便。

1、载入php组件
LoadModule php5_module "c:/www/php54/php5apache2_2.dll"
AddType application/x-httpd-php.php
PHPIniDir "C:/www/PHP54"

2、apache重要配置
(1) DocumentRoot "d:/wamp/ssxf/"

(2)

<IfModule dir_module>
DirectoryIndex index.php index.php3 index.html index.htm
</IfModule>

(3) <Directory "d:/wamp/ssxf/">

(4) ErrorLog "d:/wamp/logs/apache_error.log"

3、打开错误提示
ini_set('display_errors', 'On');
error_reporting(E_ALL);

你可能感兴趣的:(PHP)