PHP: APC Configuration and Usage Tips and Tricks
PHP APC (Alternative PHP Cache / Opcode Cache) is framework that optimizes PHP intermediate code and caches data and compiled code from the...
Read MorePHP / PDO / SQLite3 Example
This is a PHP, PDO and SQLite3 example, which demonstrates the SQLite3 databse usage with PHP-PDO. The PHP / PDO / SQLite3 example code...
Read MorePHP Memory Usage Information Class
Sometimes it’s nice to know or even very important to know, how much your PHP script is using memory. This is a simple example of a...
Read MoreInstall Nginx/PHP-FPM on Fedora 18/17, CentOS/RHEL 6.4/5.9
I have once written Install nginx, PHP 5.3 and FastCGI on CentOS 5.5, Fedora 13, Red Hat RHEL 5.5/6 guide, but this guide is...
Read MoreZend Framework on Fedora 18/17, CentOS/Red Hat (RHEL) 6.4/5.9
This is quick guide, howto install Zend Framework (ZF) 1.12.3 on Fedora 18/17/16/15, CentOS 6.4/6.3/6.2/6.1/6/5.9 and Red Hat (RHEL)...
Read MorePHP: Remove Last Character from String – substr/substr_replace/rtrim
This is a very common PHP question, how to remove last character from string in PHP? So here are three ways how to delete last character...
Read MorePHP 1st, 2nd, 3rd, 4th, 5th, 6th – PHP Add Ordinal Number Suffix
This is simple function to add English ordinal number suffix after normal number. Function takes number as a parameter and returns number...
Read MorePHP mb_ucfirst Make a String’s First Character Uppercase-Multibyte (UTF-8) Function
PHP’s ucfirst function is very usefull when you want to change words first letters to uppercase and other letters to lowercase....
Read MorePHP __DIR__, __FILE__, __FUNCTION__, __CLASS__, __METHOD__, __LINE__, __NAMESPACE__
PHP has large number of predefined constants. This HOWTO will present the seven most important, most practical and most useful PHP Magic...
Read MorePHP: Calculate Real Differences Between Two Dates or Timestamps
I was using simple function to calculate difference between two dates and timestamps until I noticed, it’s not working correctly in...
Read MorePHP CLI Colors – PHP Class Command Line Colors (bash)
PHP Command Line Interface (CLI) has not built-in coloring for script output, like example Perl language has...
Read MorePHP – Measure Scripts Execution Time and Page Generation Time
In many cases, it is really useful to know the exact time for how long a PHP script is running or how long will take PHP web page load. On...
Read MorePHP stdClass to Array and Array to stdClass – stdClass Object
I think every PHP coders have come accross Arrays and stdClass Objects (belongs to PHP Predefined Classes). Sometimes it’s very...
Read MoreBitLy (bit.ly) PHP Class – Shorten and Expand URLs (and Hashes) with BitLy API
BitLy (bit.ly) is a service which allows users to shorten, expand, share and track URLs (links). bit.ly can be accessed through bit.ly...
Read MoreFormat bytes with PHP – B, KB, MB, GB, TB, PB, EB, ZB, YB converter
Simple PHP function that formats the bytes to the desired form. Possible unit options are: Byte (B) Kilobyte (KB) Megabyte (MB) Gigabyte...
Read MorePHP: Loop through dates (from date to date) with strtotime() function
This is very easy way loop through dates (from date to date) with PHP strtotime() function. This example only echo dates, but of course...
Read MoreCSS compression with own PHP class VS CSSTidy
It makes sense to optimize the site’s cascading style sheets (CSS), as it pages load faster, and it reduce the amount of data...
Read More