stdClass

0
More

PHP stdClass to Array

  • 2020-02-28

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); }...