選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

16 行
481B

  1. <?php
  2. function path2class($path)
  3. {
  4. $temp = $path;
  5. $temp = str_replace('./', '', $temp); // remove leading './'
  6. $temp = str_replace('.\\', '', $temp); // remove leading '.\'
  7. $temp = str_replace('\\', '_', $temp); // normalize \ to _
  8. $temp = str_replace('/', '_', $temp); // normalize / to _
  9. while(strpos($temp, '__') !== false) $temp = str_replace('__', '_', $temp);
  10. $temp = str_replace('.php', '', $temp);
  11. return $temp;
  12. }
  13. // vim: et sw=4 sts=4