当クリニックからのお知らせ

インフルエンザワクチン・コロナワクチンの予防接種開始についてのお知らせ
成和クリニック 循環器内科 水曜再開
初診の患者様へ(マイナ保険証ご利用のご案内)
発熱・風邪症状のある方へ
外来透析受付中
~の検出回数 $count = 0; // HTML格納用バッファ $buffer = array(); // 新型コロナウイルス関連のお知らせ格納フラグ $coronaFlg = 0; // 新型コロナウイルス関連最新のお知らせ更新日格納用 $coronaLastUp = array(); // ファイルを1行ずつ出力 if ($file) { // 出力用フラグ $isRead = false; while ($line = fgets($file)) { // 文字列の後ろの改行(\n)を削除 $line = rtrim($line); // 先頭#の文章又は空行を飛ばす if (preg_match('/^#.*/', $line) || $line == "" ) { continue; } // コメント開始検知 if (preg_match('//', $line) ) { // コメントフラグOFF $commentOut = false; } // コメントフラグONの際にコメントを飛ばす if ($commentOut == true) { continue; } // renew-ico01かつが含まれている場合、かつvalid-switchが含まれている場合は、それ以降の$lineを出力する if (strpos ($line, "renew-ico01") !== false) { if (strpos ($line, "valid-switch") !== false) { // 出力ON $isRead = true; } } // 新型コロナウイルス関連のお知らせ最終更新日保持用 if($coronaFlg == 1) { if (strpos ($line, "time") !== false) { array_push ($coronaLastUp, $line); $coronaFlg = 2; } } elseif ($coronaFlg == 0) { if (strpos ($line, "corona-switch") !== false) { $coronaFlg = 1; } } // 出力ONの場合 if ($isRead) { // $lineをバッファに格納 array_push ($buffer, $line); } // 出力ON時に を検出した場合 if ($isRead && $line == "") { // 出力OFF $isRead = false; // renew-ico01処理件数を加算 ++$count; } } // ファイルポインタをクローズ fclose($file); } // 新型コロナウイルス関連のお知らせ出力 //echo '
'; //echo implode("\n", $coronaLastUp); //echo '
新型コロナウイルス関連のお知らせ
'; //echo '
'; // バッファに格納された文字列をHTML出力 echo implode("\n", $buffer); } ?>
タグのhrefに指定されているファイルを保持する配列 $hrefFileList = array(); // HTMLタグ
の検出回数 $count = 0; // 更新情報出力処理 { // ファイルポインタをオープン $file = fopen("shared/inc/inc_information.html", "r"); // ファイルの存在確認 if ( $file ) { // 出力用フラグ $isRead = false; $yearflg = false; // 更新アイコン初期化 $renewIco = 0; // 最終更新日保持変数 $lastUpdated = ""; while ( $line = fgets( $file ) ) { // 文字列の後ろの改行(\n)を削除 $line = trim( $line ); // 先頭#の文章又は空行を飛ばす if ( preg_match( '/^#.*/', $line ) || $line == "" ) { continue; } // コメント開始検知 if ( preg_match( '//', $line ) ) { // コメントフラグOFF $commentOut = false; } // コメントフラグONの際にコメントを飛ばす if ($commentOut == true) { continue; } // コロナ関連のお知らせではない if (strpos($line, " corona-switch") === false) { if (strpos($line, " renew-ico") !== false) { if (strpos($line, " renew-ico01") !== false) { // 重要アイコン $renewIco = 1; } if (strpos($line, " renew-ico02") !== false) { // お知らせアイコン $renewIco = 2; } if (strpos($line, " renew-ico03") !== false) { // 更新情報アイコン $renewIco = 3; } if (strpos($line, " renew-ico04") !== false) { // 採用情報アイコン $renewIco = 4; } // 出力ON $isRead = true; //
とを格納する一時バッファを初期化 $tempBuffer = array(); } } if (strpos($line, "
タグの場合 if (preg_match('/^
.*/', $line)) { // href="xxx/yyy/zzz.html" の xxx/yyy/zzz.html を取得する // →$matches[1] に xxx/yyy/zzz.html が格納される preg_match("/href=\"?(.+?)\"/", $line, $matches); // $matches[1] に値がある場合 if (isset($matches[1])) { // herfのリンクファイルを取得 $hrefFile = $matches[1]; // 初回検出の場合 if (!in_array($hrefFile, $hrefFileList)) { // 追加 array_push($hrefFileList, $hrefFile); // 2回目以降検出の場合 } else { // $hrefFile が / で終わっている場合は、index.htmlを付ける if (preg_match('/^.+\/$/', $hrefFile)) { $hrefFile = $hrefFile . "index.html"; } // 対象ファイル $targetFile = $_SERVER['DOCUMENT_ROOT'] . $hrefFile; // ファイルが存在する場合 if (file_exists($targetFile)) { // 「重要なお知らせ」か「お知らせ」の場合のみ if ($renewIco === 1 || $renewIco === 2) { // 該当ファイルのタイムスタンプ文言を取得する $lastUpdated = "(最終更新日:" . date("Y/m/d", filemtime($targetFile)) . ")"; } } } } } //
タグの場合で、最終更新日保持変数に値が設定されている場合 if (preg_match('/^.*<\/dd>$/', $line) && $lastUpdated != "") { // タグの前にタイムスタンプ文言を差し込む $line = str_replace("", $lastUpdated . "", $line); // 最終更新日保持変数を初期化 $lastUpdated = ""; } // $lineをバッファに格納 array_push($tempBuffer, $line); } // 出力ON時に を検出した場合 if ($isRead && $line == "") { // $tempBufferには
タグと
タグとタグが格納されているので // HTML格納用バッファに格納する if (!empty($tempBuffer)) { // 更新アイコンが「重要」の場合 if ($renewIco == 1) { $buffer = array_merge($buffer, array('
'), $tempBuffer, array('
')); // 更新アイコンが「お知らせ」の場合 } elseif ($renewIco == 2) { $buffer = array_merge($buffer, array('
'), $tempBuffer, array('
')); // 更新アイコンが「更新情報」の場合 } elseif ($renewIco == 3) { $buffer = array_merge($buffer, array('
'), $tempBuffer, array('
')); // 更新アイコンが「採用情報」の場合 } elseif ($renewIco == 4) { $buffer = array_merge($buffer, array('
'), $tempBuffer, array('
')); } else { // 更新アイコンなしの場合 $buffer = array_merge($buffer, $tempBuffer); } } // renew-ico処理件数を加算 ++$count; // 更新アイコン初期化 $renewIco = 0; // 出力OFF $isRead = false; $yearflg = false; // 10件出力したら終了 if ($count > 9) { break; } } } // ファイルポインタをクローズ fclose($file); } } // HTML取得 $result = implode("\n", $buffer); // 出力 if (count($buffer) > 0) { echo <<
タグのhrefに指定されているファイルを保持する配列 $hrefFileList = array(); // HTMLタグ
の検出回数 $count = 0; // 更新情報出力処理 { // ファイルポインタをオープン $file = fopen("shared/inc/inc_information.html", "r"); // ファイルの存在確認 if ( $file ) { // 出力用フラグ $isRead = false; $yearflg = false; // 更新アイコン初期化 $renewIco = 0; // 最終更新日保持変数 $lastUpdated = ""; while ( $line = fgets( $file ) ) { // 文字列の後ろの改行(\n)を削除 $line = trim( $line ); // 先頭#の文章又は空行を飛ばす if ( preg_match( '/^#.*/', $line ) || $line == "" ) { continue; } // コメント開始検知 if ( preg_match( '//', $line ) ) { // コメントフラグOFF $commentOut = false; } // コメントフラグONの際にコメントを飛ばす if ($commentOut == true) { continue; } // コロナ関連のお知らせではない if (strpos($line, " corona-switch") === false) { if (strpos($line, " renew-ico02") !== false) { // アイコン $renewIco = 2; // 出力ON $isRead = true; //
とを格納する一時バッファを初期化 $tempBuffer = array(); } } if (strpos($line, "
タグの場合 if (preg_match('/^
.*/', $line)) { // href="xxx/yyy/zzz.html" の xxx/yyy/zzz.html を取得する // →$matches[1] に xxx/yyy/zzz.html が格納される preg_match("/href=\"?(.+?)\"/", $line, $matches); // $matches[1] に値がある場合 if (isset($matches[1])) { // herfのリンクファイルを取得 $hrefFile = $matches[1]; // 初回検出の場合 if (!in_array($hrefFile, $hrefFileList)) { // 追加 array_push($hrefFileList, $hrefFile); // 2回目以降検出の場合 } else { // $hrefFile が / で終わっている場合は、index.htmlを付ける if (preg_match('/^.+\/$/', $hrefFile)) { $hrefFile = $hrefFile . "index.html"; } // 対象ファイル $targetFile = $_SERVER['DOCUMENT_ROOT'] . $hrefFile; // ファイルが存在する場合 if (file_exists($targetFile)) { // 「重要なお知らせ」か「お知らせ」の場合のみ if ($renewIco === 1 || $renewIco === 2) { // 該当ファイルのタイムスタンプ文言を取得する $lastUpdated = "(最終更新日:" . date("Y/m/d", filemtime($targetFile)) . ")"; } } } } } //
タグの場合で、最終更新日保持変数に値が設定されている場合 if (preg_match('/^.*<\/dd>$/', $line) && $lastUpdated != "") { // タグの前にタイムスタンプ文言を差し込む $line = str_replace("", $lastUpdated . "", $line); // 最終更新日保持変数を初期化 $lastUpdated = ""; } // $lineをバッファに格納 array_push($tempBuffer, $line); } // 出力ON時に を検出した場合 if ($isRead && $line == "") { // $tempBufferには
タグと
タグとタグが格納されているので // HTML格納用バッファに格納する if (!empty($tempBuffer)) { // 更新アイコンが「お知らせ」の場合 if ($renewIco == 2) { $buffer = array_merge($buffer, array('
'), $tempBuffer, array('
')); } else { // 更新アイコンなしの場合 $buffer = array_merge($buffer, $tempBuffer); } } // renew-ico処理件数を加算 ++$count; // 更新アイコン初期化 $renewIco = 0; // 出力OFF $isRead = false; $yearflg = false; // 10件出力したら終了 if ($count > 9) { break; } } } // ファイルポインタをクローズ fclose($file); } } // HTML取得 $result = implode("\n", $buffer); // 出力 if (count($buffer) > 0) { echo <<
タグのhrefに指定されているファイルを保持する配列 $hrefFileList = array(); // HTMLタグ
の検出回数 $count = 0; // 更新情報出力処理 { // ファイルポインタをオープン $file = fopen("shared/inc/inc_information.html", "r"); // ファイルの存在確認 if ( $file ) { // 出力用フラグ $isRead = false; $yearflg = false; // 更新アイコン初期化 $renewIco = 0; // 最終更新日保持変数 $lastUpdated = ""; while ( $line = fgets( $file ) ) { // 文字列の後ろの改行(\n)を削除 $line = trim( $line ); // 先頭#の文章又は空行を飛ばす if ( preg_match( '/^#.*/', $line ) || $line == "" ) { continue; } // コメント開始検知 if ( preg_match( '//', $line ) ) { // コメントフラグOFF $commentOut = false; } // コメントフラグONの際にコメントを飛ばす if ($commentOut == true) { continue; } // コロナ関連のお知らせではない if (strpos($line, " corona-switch") === false) { if (strpos($line, " renew-ico03") !== false) { // アイコン $renewIco = 3; // 出力ON $isRead = true; //
とを格納する一時バッファを初期化 $tempBuffer = array(); } } if (strpos($line, "
タグと
タグとタグが格納されているので // HTML格納用バッファに格納する if (!empty($tempBuffer)) { // 更新アイコンが「更新情報」の場合 if ($renewIco == 3) { $buffer = array_merge($buffer, array('
'), $tempBuffer, array('
')); } else { // 更新アイコンなしの場合 $buffer = array_merge($buffer, $tempBuffer); } } // renew-ico処理件数を加算 ++$count; // 更新アイコン初期化 $renewIco = 0; // 出力OFF $isRead = false; $yearflg = false; // 10件出力したら終了 if ($count > 9) { break; } } } // ファイルポインタをクローズ fclose($file); } } // HTML取得 $result = implode("\n", $buffer); // 出力 if (count($buffer) > 0) { echo <<
タグのhrefに指定されているファイルを保持する配列 $hrefFileList = array(); // HTMLタグ
の検出回数 $count = 0; // 更新情報出力処理 { // ファイルポインタをオープン $file = fopen("shared/inc/inc_information.html", "r"); // ファイルの存在確認 if ( $file ) { // 出力用フラグ $isRead = false; $yearflg = false; // 更新アイコン初期化 $renewIco = 0; // 最終更新日保持変数 $lastUpdated = ""; while ( $line = fgets( $file ) ) { // 文字列の後ろの改行(\n)を削除 $line = trim( $line ); // 先頭#の文章又は空行を飛ばす if ( preg_match( '/^#.*/', $line ) || $line == "" ) { continue; } // コメント開始検知 if ( preg_match( '//', $line ) ) { // コメントフラグOFF $commentOut = false; } // コメントフラグONの際にコメントを飛ばす if ($commentOut == true) { continue; } // コロナ関連のお知らせではない if (strpos($line, " corona-switch") === false) { if (strpos($line, " renew-ico04") !== false) { // アイコン $renewIco = 4; // 出力ON $isRead = true; //
とを格納する一時バッファを初期化 $tempBuffer = array(); } } if (strpos($line, "
タグと
タグとタグが格納されているので // HTML格納用バッファに格納する if (!empty($tempBuffer)) { // 更新アイコンが「採用情報」の場合 if ($renewIco == 4) { $buffer = array_merge($buffer, array('
'), $tempBuffer, array('
')); } else { // 更新アイコンなしの場合 $buffer = array_merge($buffer, $tempBuffer); } } // renew-ico処理件数を加算 ++$count; // 更新アイコン初期化 $renewIco = 0; // 出力OFF $isRead = false; $yearflg = false; // 10件出力したら終了 if ($count > 9) { break; } } } // ファイルポインタをクローズ fclose($file); } } // HTML取得 $result = implode("\n", $buffer); // 出力 if (count($buffer) > 0) { echo <<

診療情報

受付時間

8:30~12:00(診察は9:00開始)
12:00~17:30(診察は15:00開始)
(初診の方は17:00までに受付をお願いいたします)

診察時間

9:00~12:00
15:00~18:00

休診日

土曜日(午後)・日曜日・祝日・年末年始

成和クリニックの紹介

各科それぞれ専門化が進む中で、自分が一体どの診療科を受診したら良いのか、迷うことも少なくないものと思われます。当院の外来では、なるべく幅広く対応するように心がけると共に、疾患によっては、また重症度に応じて各専門医へ引き継ぐかたちでの診療を行っています。高齢化に伴って、疾患の複雑化、慢性化、また後遺症の残る疾患の増加などが見られていますが、当科でもそれらに対応する総合的な診療を目指しています。

成和クリニックの理念

  • 患者の権利を尊重し、丁寧かつ真摯に温かい心で医療を行うように努めます。
  • 診療科や部門・職種の枠にとらわれない、患者中心の全人的医療に努めます。
  • 疾患の予防・診断・治療において、質の高い医療を適切、安全かつ安定的に提供するよう努めます。