Category Archives: PHP

Some Useful PHP Functions

Jan 20, 2014

Hi all now we are going to see some useful php functions which will help you more the functions are of given below Highlight_string The..

Read more

Speed up PHP with APC

Jan 16, 2014

APC stands for Alternative PHP Cache,The Alternative PHP Cache (APC) is a free and open PECL package that provides an opcode cache for PHP. It’s..

Read more

Get all images from a HTML document

Dec 13, 2013

Sometimes we have to get the images from an HTML page just like Facebook does when a link is posted. You can easily get images..

Read more

Get all images from a HTML document

Dec 11, 2013

Sometimes we have to get the images from an HTML page just like Facebook does when a link is posted. You can easily get images..

Read more

How to achieve and use Polymorphism in

Dec 10, 2013

Polymorphism is a Greek word that means “many forms”. In object-oriented programming, polymorphism is a mechanism by which objects of different types can process data..

Read more

Swapping Array Keys and Values

Dec 06, 2013

If you want interchange the keys and values of an associative array. It’s very easy, just use PHP’s array_flip() function which perform a very specialized..

Read more