国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

php data type array

We will not study array types here, because there will be a chapter to explain them in the future.

Key points of this chapter:

Know that the array is a composite type

The English name of the array is array, when var_dump a variable The type you see is array, and this variable is the array type.

The simplest and most basic array declaration [default]

Next we declare an array to understand that it can be inserted into the array Just multiple values.

<?php
//定義$shu這個變量
//數(shù)組聲明是向array里面插入一個或者多個值
//一個或者多個值用逗號分開
$shu = array(1,2,3);

?>

array Pronunciation: [?'re?]
Explanation: array, queue

Continuing Learning
||
<?php //定義$shu這個變量 //數(shù)組聲明是向array里面插入一個或者多個值 //一個或者多個值用逗號分開 $shu = array(1,2,3); ?>
submitReset Code