[ create a new paste ] login | about

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

PHP, pasted on Aug 9:
1
2
3
4
5
6
7
8
<?php
error_reporting(~0); ini_set('display_errors', 1);

$m = 0;

unset($m['boo']);

var_dump($m);


Output:
1
int(0)


Create a new paste based on this one


Comments: