kentfredric (owner)

Revisions

gist: 223408 Download_button fork
public
Public Clone URL: git://gist.github.com/223408.git
Embed All Files: show embed
PHP #
1
2
3
4
5
6
$x = array( 1 => 2, 2 => 3 );
 
foreach ( $x as $i => $v ){
print "\$x is $i => $v \n";
}