Files
spa-api/system/file.php

16 lines
223 B
PHP
Raw Normal View History

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