[ create a new paste ] login | about

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

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

$data = array('thing' => 'ocean',
              'size' => 'big',
              'color' => 'blue');

extract($data);

echo "The $thing is $color and $size";


Output:
1
The ocean is blue and big


Create a new paste based on this one


Comments: