php dar echo em um stdclass

Solutions on MaxInterview for php dar echo em um stdclass by the best coders in the world

showing results for - "php dar echo em um stdclass"
Fabio
17 Jun 2016
1
2<?php
3$obj = (objectarray('1' => 'foo');
4var_dump(isset($obj->{'1'})); // outputs 'bool(true)' as of PHP 7.2.0; 'bool(false)' previously
5var_dump(key($obj)); // outputs 'string(1) "1"' as of PHP 7.2.0; 'int(1)' previously
6?>
7
8