unserialize php

Solutions on MaxInterview for unserialize php by the best coders in the world

showing results for - "unserialize php"
Lucas
31 Feb 2018
1<!DOCTYPE html>
2<html>
3<body>
4
5<?php
6$data = serialize(array("Red", "Green", "Blue"));
7echo $data . "<br>";
8
9$test = unserialize($data);
10var_dump($test);
11?>
12
13</body>
14</html>
15