0
More
PHP stdClass to Array
PHP stdClass to Array function objectToArray($d) { if (is_object($d)) { // Gets the properties of the given object // with get_object_vars function $d = get_object_vars($d); }...
Recent Comments