Files
php_8/variables/array.php

11 lines
469 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// Создаст массив с ключами 0, "surname" и "name"
$arr = [
0 => "Нулевой элемент",
"surname" => "Гейтс",
"name" => "Билл",
];
echo $arr["surname"]; // Гейтс
$arr[1] = "Первый элемент"; // создаст элемент и присвоит ему значение
$arr["name"] = "Вильям"; // присвоит существующему элементу новое значение