by admin | Dec 5, 2019 | macOS, SSH
A weird issue encountered while trying to run laravel’s php artisan commands while logged in using SSH. Following was the error. perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = (unset), LC_ALL = (unset),...
by admin | Dec 5, 2019 | PHP
Convert object to array in PHP $new_array = objectToArray($yourObject); function objectToArray($d) { if (is_object($d)) { // Gets the properties of the given object // with get_object_vars function $d = get_object_vars($d); } if (is_array($d)) { /* * Return array...
Recent Comments