Hi friends, Below things are very useful when we develop websites using php code. We most know about these things.

We must know few things about PHP | Anil Labs

We must know few things about PHP | Anil Labs

1) To check pear package is installed in your server or not.

1
2
3
4
<?php
require_once 'System.php';
var_dump(class_exists('System'));
?>

Note : It will give information about pear package in our server.
 

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.

1
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.

1
2
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.


3 Comments

John · June 22, 2010 at 4:20 am

Nice one

Sangram keshari patra · November 2, 2010 at 6:09 am

good one

Nerudo · August 29, 2012 at 1:57 pm

4) Warning : header already sent or cannot modify header information
Not only that though. If you echo something before you change header location the issues also arises

Leave a Reply

Avatar placeholder

Your email address will not be published. Required fields are marked *