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

/2.0/Tests/FileSystem/file_exists.php

#
PHP | 12 lines | 9 code | 3 blank | 0 comment | 0 complexity | e9b816db53f17b61135bcd7c302dec15 MD5 | raw file
Possible License(s): CPL-1.0, GPL-2.0, CC-BY-SA-3.0, MPL-2.0-no-copyleft-exception, Apache-2.0
  1. [expect php]
  2. [file]
  3. <?
  4. echo file_exists('C:/') ? "YES" : "NO";
  5. print("\n");
  6. echo file_exists('someotherfile') ? "YES" : "NO";
  7. print("\n");
  8. echo print('ok');
  9. ?>