Массивы - это... Краткое введение в тематику

, , , , . , . ? - , .





, . - , . : 1, 6, 2, 4, 8. . , , , () .

, . , - ( ) . , , , .

  • D: array[1..k] of real; - "". , 5 , D: array[1..5] of real;

D - , ; real - () , ; array[] - .





php




, . - , . , : D[1]. . :

  • print (D[1]); - , 1- .

, , . , . :

  • D: array[1..k] of text; - D[1]=1, , "1" - "", . .

, , "real" "integer".

. , 3- : , , . . - , , - . - D[1;1].









, . , . - , .

, , . : , , .

19899
198810
....

, . , , (..). . -, , , . -, . 4 . , ?

PHP

PHP , . , , (). , . ( ):

  • $array = array(1989, 1988, ...);

. . - 1989, - 1988 .. ? PHP ? , . ?





$table = array(

array(1989, "", "", 9),

array(1988, "", "", 10),

...

);

? $table, . , :

  • $table[0;0] = 1989, $table[0;1] = "", $table[0;2] = "", $table[0;3] = 9.
  • $table[1;0] = 1988, $table[1;1] = "", $table[1;2] = "", $table[1;3] = 10.

0 3 , 1 2 - . .




All Articles