Home  >  Article  >  Backend Development  >  [PHP] small example to show dynamic type change_PHP教程

[PHP] small example to show dynamic type change_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:37:201059browse

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


www.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...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn