update page now
Laravel Live Japan

Voting

: five plus two?
(Example: nine)

The Note You're Voting On

hello at ivanbogomolov dot ru
6 years ago
If you logic based on compare structure strings, you must compare it case insensetive.
<?php

$p = imap_fetchstructure($this->_imap_resource, $mid);
//do not compare $p->disposition == 'INLINE' 
if(preg_match('/inline/i', $p->disposition)) 
{
 //this works
}
?>

<< Back to user notes page

To Top