function rtf::specialCharacters in Bibliography Module 6
Same name and namespace in other branches
- 6.2 modules/rtf/rtf_export.inc \rtf::specialCharacters()
- 7 modules/rtf/rtf_export.inc \rtf::specialCharacters()
- 7.2 modules/rtf/rtf_export.inc \rtf::specialCharacters()
1 call to rtf::specialCharacters()
File
- ./
class_rtf.php, line 276
Class
Code
function specialCharacters($text) {
$text_buffer = "";
for ($i = 0; $i < strlen($text); $i++) {
$text_buffer .= $this
->escapeCharacter($text[$i]);
}
return $text_buffer;
}