file.php 223 B

12345678910111213141516
  1. <?php namespace System;
  2. class File {
  3. /**
  4. * Get a file's extension.
  5. *
  6. * @param string $path
  7. * @return string
  8. */
  9. public static function extension($path)
  10. {
  11. return pathinfo($path, PATHINFO_EXTENSION);
  12. }
  13. }