Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 260 Bytes

transform-array-to-object-shorthand.md

File metadata and controls

13 lines (9 loc) · 260 Bytes
  • Date : 2023-12-08
  • Tags : #php #web

Transform array to object shorthand

To transform a array to stdClass in PHP, try to cast type using (object) before the array variable.

$arr = ['a' => 1, 'b' => 5];
$obj = (object) $arr;
echo $obj->b;