I have tried unzipping files that I download and found it to be very slow to extract and I was shocked to see and so thought of stopping some of the running processes and doing everything but then could not get it to run faster.
I was very much annoyed and then started searching net if [...]
PHP comes with an in-built function to display time in your required format, but what if you want to display date and time according to user’s timezone, that’s where PEAR package Date comes in. Let’s see how we can convert a date in GMT to IST.
<?php
// include class
include ("Date.php");
// initialize object
$d = new Date("2008-10-03 16:23:48");
// [...]