file.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <?php namespace Laravel;
  2. class File {
  3. /**
  4. * Determine if a file exists.
  5. *
  6. * @param string $path
  7. * @return bool
  8. */
  9. public static function exists($path)
  10. {
  11. return file_exists($path);
  12. }
  13. /**
  14. * Get the contents of a file.
  15. *
  16. * @param string $path
  17. * @return string
  18. */
  19. public static function get($path)
  20. {
  21. return file_get_contents($path);
  22. }
  23. /**
  24. * Write to a file.
  25. *
  26. * @param string $path
  27. * @param string $data
  28. * @return int
  29. */
  30. public static function put($path, $data)
  31. {
  32. return file_put_contents($path, $data, LOCK_EX);
  33. }
  34. /**
  35. * Append to a file.
  36. *
  37. * @param string $path
  38. * @param string $data
  39. * @return int
  40. */
  41. public static function append($path, $data)
  42. {
  43. return file_put_contents($path, $data, LOCK_EX | FILE_APPEND);
  44. }
  45. /**
  46. * Delete a file.
  47. *
  48. * @param string $path
  49. * @return void
  50. */
  51. public static function delete($path)
  52. {
  53. if (static::exists($path)) @unlink($path);
  54. }
  55. /**
  56. * Extract the file extension from a file path.
  57. *
  58. * @param string $path
  59. * @return string
  60. */
  61. public static function extension($path)
  62. {
  63. return pathinfo($path, PATHINFO_EXTENSION);
  64. }
  65. /**
  66. * Get the file type of a given file.
  67. *
  68. * @param string $path
  69. * @return string
  70. */
  71. public static function type($path)
  72. {
  73. return filetype($path);
  74. }
  75. /**
  76. * Get the file size of a given file.
  77. *
  78. * @param string $file
  79. * @return int
  80. */
  81. public static function size($path)
  82. {
  83. return filesize($path);
  84. }
  85. /**
  86. * Get the file's last modification time.
  87. *
  88. * @param string $path
  89. * @return int
  90. */
  91. public static function modified($path)
  92. {
  93. return filemtime($path);
  94. }
  95. /**
  96. * Move an uploaded file to permanenet storage.
  97. *
  98. * @param string $key
  99. * @param string $path
  100. * @param array $files
  101. * @return bool
  102. */
  103. public static function upload($key, $path, $files)
  104. {
  105. return move_uploaded_file($files[$key]['tmp_name'], $path);
  106. }
  107. /**
  108. * Get a file MIME type by extension.
  109. *
  110. * If the MIME type can't be determined, "application/octet-stream" will be returned.
  111. *
  112. * <code>
  113. * // Returns 'application/x-tar'
  114. * $mime = File::mime('path/to/file.tar');
  115. * </code>
  116. *
  117. * @param string $extension
  118. * @param string $default
  119. * @return string
  120. */
  121. public static function mime($extension, $default = 'application/octet-stream')
  122. {
  123. $mimes = Config::get('mimes');
  124. if ( ! array_key_exists($extension, $mimes)) return $default;
  125. return (is_array($mimes[$extension])) ? $mimes[$extension][0] : $mimes[$extension];
  126. }
  127. /**
  128. * Determine if a file is a given type.
  129. *
  130. * The Fileinfo PHP extension will be used to determine the MIME type of the file.
  131. *
  132. * <code>
  133. * // Determine if a file is a JPG image
  134. * $image = File::is('jpg', 'path/to/image.jpg');
  135. *
  136. * // Determine if a file is any one of an array of types
  137. * $image = File::is(array('jpg', 'png', 'gif'), 'path/to/image.jpg');
  138. * </code>
  139. *
  140. * @param array|string $extension
  141. * @param string $path
  142. * @return bool
  143. */
  144. public static function is($extensions, $path)
  145. {
  146. $mimes = Config::get('mimes');
  147. foreach ((array) $extensions as $extension)
  148. {
  149. $mime = finfo_file(finfo_open(FILEINFO_MIME_TYPE), $path);
  150. if (isset($mimes[$extension]) and in_array((array) $mimes[$extension])) return true;
  151. }
  152. return false;
  153. }
  154. }