PHP Troubleshooting
FIX: Installing PEAR packages with PHP 7.2
This article will cover the solution to the PEAR "Cannot use result of built-in function in write context" issue. The Issue If installing a pear package (for instance PHP Code Sniffer), when running:…
Gabi DJ · May 18, 2018 Read more → PHP TroubleshootingWhere is the intl PHP extension? Problem solved!
Problem PHP packages/frameworks/libraries/scripts we work with might require different PHP extensions. In this case the Intl extension is needed to work with using Internationalization Functions.
Gabi DJ · Dec 14, 2016 Read more → PHP DevelopmentFloating-Point Arithmetic - Why is (int)((0.7+0.1)*10) = 7 ?
This article applies to PHP 5.x but also to PHP 7 While using floating-point arithmetic you might have noticed that not all the calculus results are as expected, this can usually be observed when cast…
Gabi DJ · Jan 26, 2016 Read more →