mirror of
https://github.com/smarty-php/smarty.git
synced 2026-08-06 21:44:17 +02:00
18 lines
351 B
PHP
18 lines
351 B
PHP
<?php
|
|
|
|
namespace Smarty\Compile\Modifier;
|
|
/**
|
|
* Smarty strlen modifier plugin
|
|
* Type: modifier
|
|
* Name: strlen
|
|
* Purpose: return the length of the given string
|
|
*
|
|
*/
|
|
|
|
class StrlenModifierCompiler extends Base {
|
|
|
|
public function compile($params, \Smarty\Compiler\Template $compiler) {
|
|
return 'strlen((string) ' . $params[0] . ')';
|
|
}
|
|
|
|
} |