2017-09-14 10 views
0

電子メールを受け取ったら、この電子メールの一部のみをデータベースに保存したいので、私は正規表現を使用して不要な部分を削除します。しかし、これは機能しません。PHP preg_replaceがハードコードなしで動作しない

function emailToMessage($inbox, $emails){ 
$messages = []; 

foreach ($emails as $email_number){ 

    # $overview contient les infos du mail 
    $overview = imap_fetch_overview($inbox,$email_number,0); 
    $headerInfos = imap_headerinfo($inbox,$email_number); 
    $mailHeader = imap_fetchheader($inbox,$email_number); 
    $structure = imap_fetchstructure($inbox,$email_number); 
    $subject = (isset($overview[0]->subject)) ?$overview[0]->subject : 'Pas de sujet'; 
    $sender = $headerInfos->from[0]->mailbox . "@" . $headerInfos->from[0]->host; 
    $body = imap_fetchbody($inbox,$email_number,1); 

    $body = checkSubtype($structure, $body); // decode if the transfert encoding is base64 and change encoding to utf8 
    $text = cleanMail($body, $mailHeader); 

    #conversion de udate en format pouvant etre inséré dans mySql 
    $mailDateAndTime = date("Y-m-d H:i:s", $overview[0]->udate); 

    $message = [ 
     'title'  => $subject, 
     'text'  => $text, 
     'id_sender' => $sender, 
     'mailDateAndTime' => $mailDateAndTime, 
    ]; 

    $messages[] = $message; 
    } 
return $messages; 
} 

function cleanMail($text, $mailHeader){ 
    $clientMail = checkMailClient($mailHeader); 

switch($clientMail){ 
    case "gmail": 
    echo($text . "<br>"); 
    $gmail = preg_replace("/\s+[0-9]{4}-[0-9]{2}-[0-9]{2}\s+[0-9]{2}:[0-9]{2}\s+GMT\+[0-9]{2}:[0-9]{2}\s+(.)*\s+:(?:\s(.)*)*/i", '$1', $text); 
    echo($gmail . "<br>"); 
    return $gmail; 
    break; 

$body = "test 

2017-09-11 11:55 GMT+02:00 XXX : 

> frgthyjuki"; 

エコー($テキスト)の場合。とエコー($ gmail);両方の私を与える:

テスト

2017年9月11日11時55分GMT + 02:00 XXX:

> frgthyjuki

しかし、私は$テキスト内を宣言した場合emailToMessage()($ body = checkSubtype($構造体、$ body); $ text = cleanMail($ body、$ mailHeader);)またはcleanMail()の間で動作します。

switch($clientMail){ 
    $text = "test 

2017-09-11 11:55 GMT+02:00 XXX : 

> frgthyjuki"; 

    case "gmail": 
    echo($text . "<br>"); 
    $gmail = preg_replace("/\s+[0-9]{4}-[0-9]{2}-[0-9]{2}\s+[0-9]{2}:[0-9]{2}\s+GMT\+[0-9]{2}:[0-9]{2}\s+(.)*\s+:(?:\s(.)*)*/i", '$1', $text); 
    echo($gmail . "<br>"); 
    return $gmail; 
    break; 

echo($ text);与える

テスト

2017年9月11日11:55 GMT + 02:00 XXX:

> frgthyjuki

とエコー($ gmailの);与える:

テスト変数がハードコードされたときに

はなぜそれだけで動作していますか?私はそれを解決することができますか?

UPDATE

function checkSubtype($structure, $body){ 
    $subtype = strtolower($structure->subtype); 

    if($subtype == "alternative") { 
     $encoding = $structure->parts[0]->parameters[0]->value; 
     $encoding = strtolower($encoding); 
     $transferEncoding = $structure->parts[0]->encoding; 

     $body = checkIfBase64($body, $transferEncoding); 
     $body = quoted_printable_decode($body); 
     $body = changeToUTF8($body, $encoding); 
    } else { 
     $transferEncoding = $structure->encoding; 
     $body = checkIfBase64($body, $transferEncoding); 
    } 
    return $body; 
} 

-

function checkIfBase64($text, $transferEncoding){ 
    if($transferEncoding == "3"){ 
     $text = base64_decode($text); 
    } 
    return $text; 
} 

function changeToUTF8($text, $encoding){ 
    if($encoding != "utf-8" && $encoding != 'utf8'){ 
    $text = utf8_encode($text); 
    } 
    return $text; 
} 

UPDATE 2

私はThunderbirdとオレンジでテスト。

私はThunderbirdで動作しません(私はRegExオンラインをチェックします。正しいですが)オレンジで動作します。

case "orange": 
return preg_replace("/s*>(?:\s(?:.)*)*/i", '$1', $text); 
break; 

私は本当に理解していない...

UPDATE 3

私は恐ろしい解決せずに再試行し、それが前のコードで動作します。 これは変です...

+2

base64のものがあなたの文字列を返していることを確認してください。 – delboy1978uk

答えて

0

これは恐ろしい解決策ですが、それは機能します...

case "gmail": 
    $step1 = preg_replace("/\s+/i", '#', $text); 
    $step2 = preg_replace("/#*[0-9]{4}-[0-9]{2}-[0-9]{2}#+[0-9]{2}:[0-9]{2}#+GMT\+[0-9]{2}:[0-9]{2}#+(.)*#*:(?:#(.)*)*/i", '$2', $step1); 
    return preg_replace("/#/i", ' ', $step2); 
    break;