Home  >  Article  >  Backend Development  >  php的list()的一步操作给一组变量进行赋值的使用_PHP教程

php的list()的一步操作给一组变量进行赋值的使用_PHP教程

WBOY
WBOYOriginal
2016-07-21 15:29:55856browse

例如:
list($a,$b) = explode(" ",microtime());
echo $a.'------'.$b;
?>
结果:0.60937700-----1305625768

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/323327.htmlTechArticle例如: ?php list($a,$b) = explode(" ",microtime()); echo $a.'------'.$b; ? 结果:0.60937700-----1305625768...
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