arrayAppend.php
Posted sky20080101
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了arrayAppend.php相关的知识,希望对你有一定的参考价值。
<?php $t_full_projects = array(); $t_full_projects[] =‘a‘; $t_full_projects[] =‘b‘; $t_full_projects[] =‘c‘; $t_full_projects[] =‘d‘; $t_full_projects[] =‘e‘; var_dump($t_full_projects); ?>
array (size=5) 0 => string ‘a‘ (length=1) 1 => string ‘b‘ (length=1) 2 => string ‘c‘ (length=1) 3 => string ‘d‘ (length=1) 4 => string ‘e‘ (length=1)
以上是关于arrayAppend.php的主要内容,如果未能解决你的问题,请参考以下文章