When you declare one variable, the initial type is null, but the type can be changed by assign statement.
global $my_var;
echo gettype($my_var);
$my_var = new stdClass();
$my_var->name = 'test';
$my_var->city = 'china';
//$my_var['weather']= 'cold';
echo gettype($my_var);
var_dump($my_var);
http://www.bkjia.com/PHPjc/735900.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/735900.htmlTechArticleWhen you declare one variable, the initial type is null, but the type can be changed by assign statement. global $my_var;echo gettype($my_var);$my_var = new stdClass();$my_var->nam...
Déclaration:Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn