Insert Into コピー先テーブルA(フィールドA1,フィールドA2,フィールドA3)
Select フィールドB1,フィールドB2,フィールドB3
From コピー元テーブルB
メルマガ登録をお願いします。
素敵な?情報がいつもあなたに届くようになります。(itmnewsの記事が届きます。)お役に立つかどうかわかりませんが頑張りますっ。登録してみてください。
ITM NEWS(東京羽村市に所在するWEBアプリ・システム開発会社アイティーエムクリエイト日記)
ホームページ制作、業務改善したい企業様、ITツールの活用方法やプログラム覚えて思い描いているものを実現したい方向け
Insert Into コピー先テーブルA(フィールドA1,フィールドA2,フィールドA3)
Select フィールドB1,フィールドB2,フィールドB3
From コピー元テーブルB
素敵な?情報がいつもあなたに届くようになります。(itmnewsの記事が届きます。)お役に立つかどうかわかりませんが頑張りますっ。登録してみてください。
https://qiita.com/sunstripe/items/9230396febfab2eae2c2
API一覧 |
---|
No. | API機能No. | 種別 | API名 | 機能概要 |
---|---|---|---|---|
0 | API_LOGIN | API | 例 | 例 |
1 | HOGE-001 | API | ほげほげ | ほげほげする |
2 | HOGE-002 | API | ほげほげ | ほげほげする |
3 | HOGE-003 | API | ほげほげ | ほげほげする |
API機能No. | HOGE-000 |
---|---|
API名 | ログイン制御 |
更新日/更新者 | 20XX.XX.XX 担当者名 |
概要 |
入力 | |
---|---|
アクセスURI | api/hoge/search |
POSTデータ(JSON形式) |
---|
JSON Key | 型 | サイズ | 必須 | 暗号化 | 検索条件 | 値の説明 |
---|---|---|---|---|---|---|
user_id | 文字列 | 10 | ○ | 完全一致 | 半角数字10桁 |
出力 |
---|
返却データ(JSON形式) |
---|
JSON Key | 型 | サイズ | 必須 | 繰返 | 値の説明 |
---|---|---|---|---|---|
status | 数値 | ○ | 処理結果ステータス | ||
messages | 配列 | エラーメッセージ群 | |||
result | 配列 | 検索結果は配列 | |||
hoge_id | 数値 | 10 | ほげのID | ||
hoge_type | 数値 | 1 | ほげの識別番号 | ||
hoge_title | 文字列 | 150 | ほげのタイトル | ||
hoge_body_text | 文字列 | ほげの本文 | |||
hoge_display_date | 文字列 | 10 | 表示日時 日付形式(YYYY/MM/DD) |
メッセージ |
---|
ステータス | 共個 | メッセージ内容(message) |
---|---|---|
1 | 個別 | 検索結果が1件以上の場合 => {“メッセージなし。”} 検索結果 0 件の場合 => {“該当する情報はありませんでした。” |
200 | 共通 | ログアウトしています。 |
300 | 個別 | { “○○は必須です”, “△△は数値ではありません”} ※ 項目毎のエラー内容を返却 |
600 | 個別 | {“サーバで認証エラーになりました。”} |
999 | 共通 | {“システムエラーが発生しました。”} |
素敵な?情報がいつもあなたに届くようになります。(itmnewsの記事が届きます。)お役に立つかどうかわかりませんが頑張りますっ。登録してみてください。
ファイルを複数添付する時の、文字コード指定、区切り文字にやや癖があります。
参考サイトは以下です。
http://www.phppro.jp/qa/596
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
function sendMail( $to=null, $sender_email=null, $from = null,$subject=null, $text=null, $file=null, $file2=null, $file3=null, $file_path=null, $file_path2=null, $file_path3=null){ $mail['to']['name'] = $from; $mail['to']['mail'] = $to; $mail['from']['name'] = $from; $mail['from']['mail'] = $sender_email; $subject = $subject; $message = $text; $filename = $file; $attach_file = $file_path; // 添付ファイル へのパス $attach_file2 = $file_path2; // 添付ファイル へのパス $attach_file3 = $file_path3; // 添付ファイル へのパス $mime_type = "application/octet-stream"; // 文字エンコードの設定 mb_internal_encoding('UTF-8'); // マルチパートなので、パートの区切り文字列を指定 $boundary = '----=_Boundary_' . uniqid(rand(1000,9999) . '_') . '_'; // 件名のエンコード $subject = mb_convert_encoding($subject, 'ISO-2022-JP', 'UTF-8'); $subject = $this->mb_encode_mimeheader_ex($subject); // 本文のエンコード $message = mb_convert_encoding($message, 'ISO-2022-JP', 'UTF-8'); // toをエンコード $to = mb_convert_encoding($mail['to']['name'], "JIS", "UTF-8"); $to = "=?ISO-2022-JP?B?" . base64_encode($to) . '?= <' . $mail['to']['mail'] . '>'; // fromをエンコード $from = mb_convert_encoding($mail['from']['name'], "JIS", "UTF-8"); $from = "=?ISO-2022-JP?B?" . base64_encode($from) . '?= <' . $mail['from']['mail'] . '>'; // 添付ファイルのエンコード $filename = mb_convert_encoding($filename, 'ISO-2022-JP', 'UTF-8'); $filename = "=?ISO-2022-JP?B?" . base64_encode($filename) . "?="; $attach_file = file_get_contents($attach_file); // ファイルを開く $attach_file = chunk_split(base64_encode($attach_file), 76, "\n"); // Base64に変換し76Byte分割 $attach_file2 = file_get_contents($attach_file2); // ファイルを開く $attach_file2 = chunk_split(base64_encode($attach_file2), 76, "\n"); // Base64に変換し76Byte分割 $attach_file3 = file_get_contents($attach_file3); // ファイルを開く $attach_file3 = chunk_split(base64_encode($attach_file3), 76, "\n"); // Base64に変換し76Byte分割 // ヘッダーの指定 $head = ''; $head .= "From: {$from}\n"; $head .= "MIME-Version: 1.0\n"; $head .= "Content-Type: multipart/mixed; boundary=\"{$boundary}\"\n"; $head .= "Content-Transfer-Encoding: 7bit"; $body = ''; // 本文 $body .= "--{$boundary}\n"; $body .= "Content-Type: text/plain; charset=ISO-2022-JP\n" . "Content-Transfer-Encoding: 7bit\n"; $body .= "\n"; $body .= "{$message}\n"; // 添付ファイルの処理 $body .= "--{$boundary}\n"; $body .= "Content-Type: {$mime_type}; name=\"{$filename}\"\n" . "Content-Transfer-Encoding: base64\n" . "Content-Disposition: attachment; filename=\"{$filename}\"\n"; $body .= "\n"; $body .= "{$attach_file}\n"; // ファイル添付2 if( !empty($file2) ) { $body .= "--{$boundary}\n"; $body .= "Content-Type: {$mime_type}; name=\"{$file2}\"\n" . "Content-Transfer-Encoding: base64\n" . "Content-Disposition: attachment; filename=\"{$file2}\"\n"; $body .= "\n"; $body .= "{$attach_file2}\n"; } // ファイル添付3 if( !empty($file3) ) { $body .= "--{$boundary}\n"; $body .= "Content-Type: {$mime_type}; name=\"{$file3}\"\n" . "Content-Transfer-Encoding: base64\n" . "Content-Disposition: attachment; filename=\"{$file3}\"\n"; $body .= "\n"; $body .= "{$attach_file3}\n"; } // マルチパートの終了 $body .= "--$boundary--\n"; if (mail($to, $subject, $body, $head)) { //echo '送信完了'; } else { //echo '送信できませんでした。'; } return false; } // mb_encode_mimeheaderのバグ対策用 function mb_encode_mimeheader_ex($text, $split_count = 34) { $position = 0; $encorded = ''; while ($position < mb_strlen($text, 'ISO-2022-JP')) { if ($encorded != '') { $encorded .= "\r\n "; } $output_temp = mb_strimwidth($text, $position, $split_count, '', 'ISO-2022-JP'); $position = $position + mb_strlen($output_temp, 'ISO-2022-JP'); $encorded .= "=?ISO-2022-JP?B?" . base64_encode($output_temp) . "?="; } return $encorded; } |
素敵な?情報がいつもあなたに届くようになります。(itmnewsの記事が届きます。)お役に立つかどうかわかりませんが頑張りますっ。登録してみてください。