亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

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