Arquivos
hhvm/hphp/test/quick/not_a_resource.php
T
Tim Starling 998951619f update copyright date
We did not intend to imply our copyrights last forever

Closes #759
2013-06-03 12:43:56 -07:00

16 linhas
312 B
PHP

<?php
// Copyright 2004-2013 Facebook. All Rights Reserved.
function r($a) {
var_dump(is_resource($a));
var_dump(is_object($a));
var_dump($a);
}
$f = imagecreate(10, 10);
r($f);
imagedestroy($f);
// Now it's not a resource anymore! It's not an object either. What is it?
// It's PHP, that's what.
r($f);