[ create a new paste ] login | about

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

PHP, pasted on Dec 8:
1
2
3
4
5
6
7
8
<?php

$array = array('a' => 'abc', 'b' => 'def');

extract($array);

var_dump($a, $b);
 


Output:
1
2
string(3) "abc"
string(3) "def"


Create a new paste based on this one


Comments: