- Smarty 4.1.1 → 4.5.6 (behebt dynamic property deprecations) - Core-Klassen: #[\AllowDynamicProperties] für Admin_role, base, Config, Customer, Customer_group, CustomerGroups, Item, Structure, website - website.class.php: counts[parent_id] initialisieren vor ++ (PHP 8.1) - layout.class.php: HTTP_ACCEPT_LANGUAGE mit isset-Guard - website_init.php: session_status()-Check vor session_start - .htaccess: HTTPS-Redirect via X-Forwarded-Proto (statt SERVER_PORT) - themes/easyshop_advanced/media/: Parent-Theme-Assets nachgezogen - .gitignore: smarty.4.1.1.bak ausschließen
985 B
985 B
count_characters
This is used to count the number of characters in a variable.
Basic usage
{$myVar|count_characters}
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| 1 | boolean | No | This determines whether to include whitespace characters in the count. |
Examples
<?php
$smarty->assign('articleTitle', 'Cold Wave Linked to Temperatures.');
Where template is:
{$articleTitle}
{$articleTitle|count_characters}
{$articleTitle|count_characters:true}
Will output:
Cold Wave Linked to Temperatures.
29
33
See also count_words,
count_sentences and
count_paragraphs.