PageRenderTime 46ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/hphp/test/zend/bad/ext/standard/tests/file/mkdir-004.php

http://github.com/facebook/hiphop-php
PHP | 8 lines | 6 code | 2 blank | 0 comment | 0 complexity | e9f8d39b35e7c656d5b7e1bd76fdc010 MD5 | raw file
Possible License(s): LGPL-2.1, BSD-2-Clause, BSD-3-Clause, MPL-2.0-no-copyleft-exception, MIT, LGPL-2.0, Apache-2.0
  1. <?php
  2. var_dump(mkdir("/testdir/subdir", 0777, true));
  3. var_dump(rmdir("/testdir/subdir"));
  4. var_dump(rmdir("/testdir"));
  5. echo "Done\n";
  6. ?>