Arquivos
hhvm/hphp/test/slow/ext_file/write_hdf_string.php
T
Jordan DeLong 4795dcdc09 Migrate TestExtFile to php
I dropped a couple tests that did nothing
(e.g. clearstatcache) or almost nothing, or that 'tested' things that
almost all the tests do (e.g. unlink or fclose).  Dropped a few unixy
apis that really didn't test that they do anything.  Combined a few
tests also.
2013-06-18 16:23:23 -07:00

10 linhas
186 B
PHP

<?php
$hdf = array(
'bool' => false,
'string' => 'asd',
'num' => 12345,
'arr' => array('bool' => false, 'string' => 'blah', 'num2' => 6789)
);
var_dump(write_hdf_string($hdf));