Files
ponzi/system/file.php
2011-06-17 00:17:51 -05:00

16 lines
223 B
PHP

<?php namespace System;
class File {
/**
* Get a file's extension.
*
* @param string $path
* @return string
*/
public static function extension($path)
{
return pathinfo($path, PATHINFO_EXTENSION);
}
}