Flipkart.com

How to Enable PHP Error Logging via htaccess

I would like to get my own PHP error log, how can I do this? =========================================== If you don’t have a .htaccess file, create it it using the file manager ...

OOPS in PHP5 – Polymorphism in oops

Polymorphism in PHP5 is a technique where the function to be called is detected based on the class object calling it at runtime. The basis of Polymorphism is Inheritance and function ...

OOPS in PHP 5 – __destruct() Method

Destructor are special function in Object Oriented Programming. It gets called automatically whenever object of a class is destroyed or goes out of scope. This is useful for clean up ...

PHP5 OOPS Constructor – __construct() Method

Construcors are special function in object oriented programming. It gets called automatically whenever object of class is created. This is useful for performing any pre operations before ...

PHP5 OOPS Tutorial – Defining Class Constants

In PHP5 we can defines class level constants that will not change its value within the class scope. We can use the class constants in php5 using a new keyowrd “const”. Only ...

XML string to PHP array

Pass the xml string through the xml2array function, if you have any priority tag also can pass in the xml2array function as second argument. Yesterday i wrote an article regarding PHP-CURL. ...