上の階層のディレクトリ名をPHPで取得する方法 $list = split( “/”, $_SERVER[ SCRIPT_NAME ] ); $name = $list[ count( $list ) – 3 ]; echo $name;
Comment