Few things about PHP
Posted by: Anil Kumar Panigrahi in: ● June 15, 2010
Hi friends,
Below things are very useful when we develop websites using php code.
1) To check pear package is installed in your server or not.
<?php
require_once ‘System.php’;
var_dump(class_exists(‘System’));
?>
It will give information about pear package in our server.
2) Add php code in a htm file.
When i was working in website, in that website php code is written in a static htm file. For that we just put a one line code in a .htaccess file, it will work.
AddHandler application/x-httpd-php .html .htm
3) To display warnings in php file
After hosting files into a new server, it does not give output, it shows empty page, because that files contains warnings. In a server default warnings are disable, to enable those warnings add below code in a starting of php file.
ini_set(‘error_reporting’, E_ALL ^ E_NOTICE);
ini_set(‘display_errors’,1);
4) Warning : header already sent or cannot modify header information
This warning mainly occurs when there is white space before the header location or some echo statements before the header location. So better prevent echo and white spaces before the header statement this warning will prevented.
Comments