Your Ad Here

Posted By

daisuke103 on 10/02/09


Tagged

php textmate html ob obstart


Versions (?)

PHP HTMLを変数に入れる


 / Published in: Other
 

  1. <?php
  2. ob_start();
  3. include("body.php");
  4. $body = ob_get_contents();
  5. ob_end_clean();
  6. if ($mode == MODE_MOBILE) {
  7. $body = mb_convert_encoding($body, "Shift-JIS", "UTF-8");
  8. }
  9. echo $body ?>

Report this snippet  

You need to login to post a comment.