This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require_once('Mail/mimeDecode.php'); | |
$mail = file_get_contents($filename); | |
$params['include_bodies'] = true; | |
$params['decode_bodies'] = true; | |
$params['decode_headers'] = true; | |
$decoder = new Mail_mimeDecode($mail); | |
$structure = $decoder->decode($params); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UIPasteboard* pasteBoard = [UIPasteboard generalPasteboard]; | |
[pasteBoard setString:@"any NSString"]; | |
NSString* clipboard = [pasteBoard string]; |
NewerOlder