$getBasePath = function($protocol = NULL){
if(!isset($protocol)){
if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on'){
$protocol = "https:";
} else {
$protocol = "http:";
}
}else{
$protocol .= ":";
}
if(isset($GLOBALS["base_path"])) return preg_replace('/^(http:|https:)/i', $protocol, $GLOBALS["base_path"]);
if(!isset($_REQUEST["level"]))$_REQUEST["level"] = 0;
if(isset($_REQUEST["base_url"])){
$uri = $_REQUEST["base_url"];
}else{
$uri = $_SERVER["REQUEST_URI"];
}
if(strlen($uri)-1 != strrpos($uri, "/")){
$uri = rtrim(dirname($uri), "/");
}else{
$uri = rtrim($uri, "/");
}
if($_REQUEST["level"] == 0){
$uri = $protocol."//".$_SERVER['SERVER_NAME'].$uri;
$GLOBALS["base_path"] = $uri;
return $uri;
}
$path_array = explode("/", $uri);
for ($i = 0; $i <= (int)$_REQUEST["level"]-1; $i++){
array_pop($path_array);
}
foreach ($path_array as $dir) {
if($dir != "") $base_path .= "/".$dir;
}
$base_path = $protocol."//".$_SERVER['SERVER_NAME'].$base_path;
$GLOBALS["base_path"] = $base_path;
return $base_path;
}
?>
| 社名 |
光洋自動車株式会社 |
| 本社所在地 |
〒090-0837
北見市中央三輪6丁目437-1 |
| 代表者 |
伊藤 誠英 |
| 事業内容 |
・フォルクスワーゲン新車販売
・中古車と責任エリアでの純正部品の取り扱い
・アウディ新車販売
・中古車と責任エリアでの純正部品の取り扱いにおいての部品の供給
・ランボルギーニ新車販売
・中古車と責任エリアでの純正部品の取り扱いにおいての部品供給
|
| 設立 |
1976年2月13日 |
| 資本金 |
3000万円(2017年05月24日現在) |
| 従業員 |
約60名 |
| 店鋪数 |
新車ショールーム6店 サービス工場5ヶ所 |
| 平成5年7月 |
フォルクスワーゲン・アウディ正規ディーラーを北見に設立 |
| 平成6年11月 |
フォルクスワーゲン・アウディ正規ディーラーを旭川に設立 |
| 平成8年8月 |
北見2Fショールームオープン |
| 平成13年1月 |
フォルクスワーゲン旭川として旭川大雪通5丁目に新築移転 同時にフォルクスワーゲン北見に改称 |
| 平成16年10月 |
フォルクスワーゲン新札幌を新築オープン |
| 平成26年9月 |
道内初のターミナルショールームとしてアウディ旭川店改築オープン |
| 令和5年7月 |
ランボルギーニ札幌を新築オープン |
$getBasePath = function($protocol = NULL){
if(!isset($protocol)){
if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on'){
$protocol = "https:";
} else {
$protocol = "http:";
}
}else{
$protocol .= ":";
}
if(isset($GLOBALS["base_path"])) return preg_replace('/^(http:|https:)/i', $protocol, $GLOBALS["base_path"]);
if(!isset($_REQUEST["level"]))$_REQUEST["level"] = 0;
if(isset($_REQUEST["base_url"])){
$uri = $_REQUEST["base_url"];
}else{
$uri = $_SERVER["REQUEST_URI"];
}
if(strlen($uri)-1 != strrpos($uri, "/")){
$uri = rtrim(dirname($uri), "/");
}else{
$uri = rtrim($uri, "/");
}
if($_REQUEST["level"] == 0){
$uri = $protocol."//".$_SERVER['SERVER_NAME'].$uri;
$GLOBALS["base_path"] = $uri;
return $uri;
}
$path_array = explode("/", $uri);
for ($i = 0; $i <= (int)$_REQUEST["level"]-1; $i++){
array_pop($path_array);
}
foreach ($path_array as $dir) {
if($dir != "") $base_path .= "/".$dir;
}
$base_path = $protocol."//".$_SERVER['SERVER_NAME'].$base_path;
$GLOBALS["base_path"] = $base_path;
return $base_path;
}
?>
