Go to the source code of this file.
◆ path2class()
Definition at line 3 of file path2class.func.php.
References $path.
6 $temp = str_replace(
'./',
'', $temp);
7 $temp = str_replace(
'.\\',
'', $temp);
8 $temp = str_replace(
'\\',
'_', $temp);
9 $temp = str_replace(
'/',
'_', $temp);
10 while(strpos($temp,
'__') !==
false) $temp = str_replace(
'__',
'_', $temp);
11 $temp = str_replace(
'.php',
'', $temp);