PHP Curl ExampleJanuary 10, 2014November 30, 2022PHP developers usually use Curl to connect to the external network, but it could fail on Linux due to permission issue. For example, a PHP… Read More »PHP Curl Example
How to Pass Arrays by Reference to FunctionsJuly 11, 2013Don't be fooled by the variable assignment, it does act like an object and pass by reference like following: <?php $arr1 = array('Apple', 'Banana'); $arr2… Read More »How to Pass Arrays by Reference to Functions