“PHP Array Serialize” Ответ

serialize () php

<?php

$arrayName = array();
array_push($arrayName, "messie");
array_push($arrayName, "cr7");
print_r($arrayName); //output is => Array ( [0] => messie [1] => cr7 )
$serial = serialize($arrayName);
print("<br>");
print($serial); //output is =>a:2:{i:0;s:6:"messie";i:1;s:3:"cr7";}

// a is arrray ; 2 is the number of the ietems insid the array ;
 //i is the index ; s is the number of the chracters ;
$serial=unserialize($serial);
print("<br>");
print_r($serial);//output is => Array ( [0] => messie [1] => cr7 )



?>
AHMAD ALHAMADA

PHP Serialize Array

$array["a"] = "Foo";
$array["b"] = "Bar";
$array["c"] = "Baz";
$array["d"] = "Wom";

$str = serialize($array);
Worrisome Whale

PHP serialize ()

php array to be storable value in $_SESSION:
 serialize($array)
  serialized array element to be output on page:
unserialize($serializedArray)
CuteKittyCat

PHP Array Serialize

//If you plan to serialize and store it in file or database use below syntax
//to safely serialize
$safe_string_to_store = base64_encode(serialize($multidimensional_array));

//to unserialize...
$array_restored_from_db = unserialize(base64_decode($encoded_serialized_string));
eswaran

Ответы похожие на “PHP Array Serialize”

Вопросы похожие на “PHP Array Serialize”

Больше похожих ответов на “PHP Array Serialize” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования