Lines Matching refs:text
53 foreach ($this->texts as $text) {
55 if ($text->isWhiteSpace()) {
56 $result .= $text->__toString();
60 $formatting = $text->getFormatting();
81 $result .= $text->__toString();
121 * @param string $text
123 public function alignmentPadding($text) argument
127 $text = "$text ";
130 $text = " $text";
133 $text = " $text ";
136 return $text;
142 * @param string $text The text currently worked on
146 public function openFormatting(&$text, $formatting) argument
152 $text .= $this->fSyntax[$formatting][0];
160 * @param string $text The text currently worked on
164 public function closeFormatting(&$text, $formatting) argument
166 preg_match('/^(.+?)(\s*)$/s', $text, $matches);
167 $text = $matches[1];
174 $text .= $this->fSyntax[$formatting][1];
175 $text .= $suffix;