[ create a new paste ] login | about

Link: http://codepad.org/hFyeVESP    [ raw code | output | fork ]

PHP, pasted on Aug 24:
1
2
3
4
5
6
7
<?php
ob_start();
?>
a:1:{i:0;s:8:"Religion";}
<?php

var_dump(unserialize(ob_get_clean()));


Output:
1
2
3
4
array(1) {
  [0]=>
  string(8) "Religion"
}


Create a new paste based on this one


Comments: