首页 > 移动平台 > 详细

arrayAppend.php

时间:2017-06-01 11:13:24      阅读:343      评论:0      收藏:0      [点我收藏+]

 

<?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

原文:http://www.cnblogs.com/sky20080101/p/6927863.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!