mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-07-29 12:52:43 +00:00
13 lines
288 B
PHP
13 lines
288 B
PHP
<?php
|
|
$numbers = [23, 45, 34, 2, 12];
|
|
|
|
// Упаковываем массив в строку
|
|
$str = serialize($numbers);
|
|
echo "$str<br />";
|
|
|
|
// Извлекаем массив из строки
|
|
$arr = unserialize($str);
|
|
echo '<pre>';
|
|
print_r($arr); // [23, 45, 34, 2, 12]
|
|
echo '</pre>';
|