Answers for "php cast to arry"

PHP
6

php object to array

//This works best
$array = json_decode(json_encode($object), true);
Posted by: Guest on January-28-2021
1

convert std to array php

<?php
  $realArray = (array) $stdClass;
?>
Posted by: Guest on May-12-2021

Browse Popular Code Answers by Language