[TIPS] Convert Your Numbers To Human Readable Format
Sometimes your code produces large numbers that are hard for users to read. For example, 17753392783 bytes or 18293753038 units. For human eyes, it’s easier to…
// TAG · 21 POSTS · PHP
Sometimes your code produces large numbers that are hard for users to read. For example, 17753392783 bytes or 18293753038 units. For human eyes, it’s easier to…
When debugging a PHP application, print_r() or var_dump() is often used to display the data inside a variable, usually an array that stores many values. print_r()…
Curl is a command line tool to transfer data using various protocols. The Curl project was released with libcurl, which is a library for curl that…
PHP processes will by default stop or terminate when the client closes the connection or a process timeout occurs. When a user stops the process through…
There are many ways to publish a WordPress blog post. You can publish from the WordPress admin interface, you can publish via email and also you…
The latest PHP v.5.3.3 doesn’t work well with PDO Sqlite3. I am using a VPS (Virtual Private Server) with Centos 5 and WHM/Cpanel 11.26.8. Everything goes…
After a while of not writing on my blog, I’m ready to start writing again. Probably you noticed that I changed my theme. Yes, I was…
Today my WordPress was upgraded to a new version, version 2.8.1. There weren’t so many changes, but it feels better to upgrade to the newest version.…
Installing ImageMagick on Ubuntu with PECL is really simple. But I want to share how to install it, and also to remind myself someday if I…