mirror of
https://github.com/smarty-php/smarty.git
synced 2025-11-16 07:29:32 +01:00
Add makefile, PSR-4 ModifierCompilers
This commit is contained in:
19
src/Compile/Modifier/StrlenModifierCompiler.php
Normal file
19
src/Compile/Modifier/StrlenModifierCompiler.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace Smarty\Compile\Modifier;
|
||||
/**
|
||||
* Smarty strlen modifier plugin
|
||||
* Type: modifier
|
||||
* Name: strlen
|
||||
* Purpose: return the length of the given string
|
||||
*
|
||||
* @link https://www.smarty.net/docs/en/language.modifier.strlen.tpl strlen (Smarty online manual)
|
||||
*/
|
||||
|
||||
class StrlenModifierCompiler extends Base {
|
||||
|
||||
public function compile($params, \Smarty\Compiler\Template $compiler) {
|
||||
return 'strlen((string) ' . $params[0] . ')';
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user