HaruPage::measureText
(PECL haru >= 0.0.1)
HaruPage::measureText — Calculate the byte length of characters which can be included on one line of the specified width
Descrição
$text
, float $width
[, bool $wordwrap = false
] )Get the byte length of characters which can be included on one line of the specified width.
Parâmetros
-
text -
The text to measure.
-
width -
The width of the line.
-
wordwrap -
When this parameter is set to
TRUEthe function "emulates" word wrapping by stopping after the last full word (delimited by whitespace) that can fit on the line.
Valor Retornado
Returns the byte length of characters which can be included within the specified width. For single-byte encodings, this is equal to the number of characters. For multi-byte encodings, this is not necessarily the case.
Erros
Joga um HaruException em erro.
Veja Também
- HaruFont::measureText() - Calculate the number of characters which can be included within the specified width