ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
path2class.func.php
Go to the documentation of this file.
1<?php
2
4{
5 $temp = $path;
6 $temp = str_replace('./', '', $temp); // remove leading './'
7 $temp = str_replace('.\\', '', $temp); // remove leading '.\'
8 $temp = str_replace('\\', '_', $temp); // normalize \ to _
9 $temp = str_replace('/', '_', $temp); // normalize / to _
10 while(strpos($temp, '__') !== false) $temp = str_replace('__', '_', $temp);
11 $temp = str_replace('.php', '', $temp);
12 return $temp;
13}
14
15// vim: et sw=4 sts=4
$path
Definition: aliased.php:25
An exception for terminatinating execution or to throw for unit testing.
path2class($path)