home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2005 June / PCpro_2005_06.ISO / files / opensource / xamp / xampp-win32.exe / xampp / .tmp005.phpt < prev    next >
Encoding:
Text File  |  2004-03-24  |  949 b   |  46 lines

  1. --TEST--
  2. Check quoted-printable encoding generates S/MIME safe content
  3. --SKIPIF--
  4. <?php
  5. /* vim600: sw=4 ts=4 fdm=marker syn=php
  6. */
  7. if (!extension_loaded("mailparse")) @dl("mailparse.so");
  8. if (!extension_loaded("mailparse")) print "skip"; ?>
  9. --POST--
  10. --GET--
  11. --FILE--
  12. <?php 
  13. if (!extension_loaded("mailparse")) @dl("mailparse.so");
  14. $text = <<<EOD
  15. To: fred@bloggs.com
  16.  
  17. blah blah blah From blah $ " & ú blah blah blah blah blah
  18. From the first of the month, things will be different!
  19. blah blah blah From blah
  20. Frome is a town in Somerset.
  21. EOD;
  22.  
  23. $fp = tmpfile();
  24. fwrite($fp, $text);
  25. rewind($fp);
  26.  
  27. $fpdest = tmpfile();
  28.  
  29. mailparse_stream_encode($fp, $fpdest, "quoted-printable");
  30.  
  31. rewind($fpdest);
  32.  
  33. fpassthru($fpdest);
  34.  
  35. fclose($fp);
  36. fclose($fpdest);
  37. ?>
  38. --EXPECT--
  39. To: fred@bloggs.com
  40.  
  41. blah blah blah From blah $ " & =A3 blah blah blah blah blah
  42. =46rom the first of the month, things will be different!
  43. blah blah blah From blah
  44. Frome is a town in Somerset.
  45.  
  46.