f:format.case¶
Modifies the case of an input string to upper- or lowercase or capitalization.
The default transformation will be uppercase as in mb_convert_case [http://php.net/manual/function.mb-convert-case.php].
Note that the behavior will be the same as in the appropriate PHP function mb_convert_case;
especially regarding locale and multibyte behavior.
Properties¶
value¶
- Variable type
- String
- Description
- The input value. If not given, the evaluated child nodes will be used.
- Default value
- NULL
- Mandatory
- No
mode¶
- Variable type
- String
- Description
The case to apply, must be one of this' CASE_* constants. Defaults to uppercase application. Possible modes are:
CASE_LOWER = 'lower'Transforms the input string to its lowercase representationCASE_UPPER = 'upper'Transforms the input string to its uppercase representationCASE_CAPITAL = 'capitalTransforms the input string to its first letter upper-cased, i.e. capitalizationCASE_UNCAPITAL = 'uncapital'Transforms the input string to its first letter lower-cased, i.e. uncapitalizationCASE_CAPITAL_WORDS = 'capitalWords'Not supported yet: Transforms the input string to each containing word being capitalized- Default value
- self::CASE_UPPER
- Mandatory
- No
Examples¶
Some Text with mixed case
<f:format.case>Some Text with miXed case</f:format.case>
SOME TEXT WITH MIXED CASE
Example with given mode
<f:format.case mode="capital">someString</f:format.case>
SomeString