<?phpclassPath{/*
* Returns the file name of the specified path string without the extension.
*
*/publicstaticfunctionGetFileNameWithoutExtension($filePath){$path_parts=pathinfo($filePath);return$path_parts['filename'];}publicstaticfunctionGetParentPath($filePath){returndirname($filePath);}}?>