Search code examples
phpphpwordphpoffice

How can I type from right to left with phpword


I need to write in word document in right to left direction .. any help?

I've uploaded the file "phpword" from http://phpword.codeplex.com/SourceControl/list/changesets?branch=default


Solution

  • That PhpVersion you are referring to is outdated and not maintaned (since long time). If you download the currently maintained version from PhpWord, you can define the rtl like this (from Sample_36_RTL.php that is included in the project samples folder):

    $textrun->addText(htmlspecialchars('سلام این یک پاراگراف راست به چپ است', ENT_COMPAT, 'UTF-8'), array('rtl' => true));