エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
phpプログラムメモ pearを利用したメールの分解
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
phpプログラムメモ pearを利用したメールの分解
2024/07 | 12345678910111213141516171819202122232425262728293031 | 2024/09 サーバにきたメールをp... 2024/07 | 12345678910111213141516171819202122232425262728293031 | 2024/09 サーバにきたメールをphpへ飛ばして php側でメールの分解をするためのソースです。 require_once 'Mail/mimeDecode.php'; mb_language('ja'); // メール取得 if ( ($stdin=fopen("php://stdin",'r')) == true ){ while( !feof($stdin) ){ $line .= fgets($stdin,4096); } } fclose($stdin); //ここまでメールの取得 // PEAR を使った処理 $decoder = & new Mail_mimeDecode( $line ); // MIMEを分解 $parts = $deco