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

/hphp/test/slow/ext_image/1794.php

http://github.com/facebook/hiphop-php
PHP | 29 lines | 22 code | 7 blank | 0 comment | 0 complexity | 9308ca864b07cbfb8e46fc83c6fc0d6b 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. <?hh
  2. <<__EntryPoint>>
  3. function main_1794() {
  4. touch(__DIR__.'/images/246x247.png', 1234567890);
  5. $exif = exif_read_data(__DIR__.'/images/246x247.png');
  6. print_r($exif);
  7. touch(__DIR__.'/images/php.gif', 1234567890);
  8. $exif = exif_read_data(__DIR__.'/images/php.gif');
  9. print_r($exif);
  10. touch(__DIR__.'/images/simpletext.jpg', 1234567890);
  11. $exif = exif_read_data(__DIR__.'/images/simpletext.jpg');
  12. print_r($exif);
  13. touch(__DIR__.'/images/smile.happy.png', 1234567890);
  14. $exif = exif_read_data(__DIR__.'/images/smile.happy.png');
  15. print_r($exif);
  16. touch(__DIR__.'/images/test1pix.jpg', 1234567890);
  17. $exif = exif_read_data(__DIR__.'/images/test1pix.jpg');
  18. print_r($exif);
  19. touch(__DIR__.'/images/test2.jpg', 1234567890);
  20. $exif = exif_read_data(__DIR__.'/images/test2.jpg');
  21. print_r($exif);
  22. }