Installing and uninstalling PHP extensions using PECL
PECL is a repository for PHP Extensions. It provide a directory which contains numerous PHP extensions and hosting facilities where…
Simply Explaining Technology
PECL is a repository for PHP Extensions. It provide a directory which contains numerous PHP extensions and hosting facilities where…
PHP provides four functions which enable you to insert code from other files. * include()* require()* include_once()* require_once() All four…
The following code encrypts a string. crypt() function encrypts the string. The last line prints the encrypted string. There is…
What is Unit Testing Most developers agree that testing is important but few test their code. Even fever do it…
phpDocumentor is a tool which creates complete documentation like Javadocs for PHP code. Installing phpDocumentor Install libraries. Restart Apache. Install…
Oracle’s VirtualBox is a very solid and stable virtual machine but it isn’t the simplest to work with. So I…
It is very easy to create a csv file using PHP. All you need to do is create a two…
Following code uses DOM to extract links. This code scrapes image and anchor links. This code can be extended to…
A sentence can be parsed in many different ways in PHP. A few methods are presented here along with their…
JavaScript Object Notation (JSON) is a lightweight standard for data interchange. It offers several advantages over XML for data interchange…