PageRenderTime 36ms CodeModel.GetById 11ms RepoModel.GetById 0ms app.codeStats 0ms

/2.1/Testing/Tests/FileSystem/file_get_contents.php

#
PHP | 11 lines | 11 code | 0 blank | 0 comment | 0 complexity | 24457e2d037344594dbffc16a9d580be 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. $context = stream_context_create();
  5. echo "-------------------------\n";
  6. echo file_get_contents(__FILE__),"\n";
  7. echo "-------------------------\n";
  8. echo file_get_contents(__FILE__,false,$context,1),"\n";
  9. echo "-------------------------\n";
  10. echo file_get_contents(__FILE__,false,$context,1,10),"\n";
  11. ?>