[ create a new paste ] login | about

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

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

$arr = new stdClass;

print_r($arr);
print "\n";
print_r((array)$arr);

?>


Output:
1
2
3
4
5
6
7
stdClass Object
(
)

Array
(
)


Create a new paste based on this one


Comments: