encode_php
PHP コード内でデータを使えるようにMovable Type タグの出力をエンコードします。以下の値が指定できます。初期値は q (シングル・クォーテーション)です。
q(シングル・クオーテーション)qq(タブル・クオーテーション)here(ヒア・ドキュメント)
使い方
<?php
$the_title = '<$MTEntryTitle encode_php="q"$>';
$the_author = "<$MTEntryAuthorDisplayName encode_php="qq"$>";
$the_text = <<<EOT
<$MTEntryText encode_php="here"$>
EOT
?>

