- Renamed classes names and files
[haanga.git] / lib / Haanga / Extension / Filter / Length.php
blob7694eb60ff696e4859a98eab7a2ba7b9c9e5a440
1 <?php
3 class Haanga_Extension_Filter_Length
5 function generator($compiler, $args)
7 if (Haanga_AST::is_str($args[0])) {
8 return hexec('strlen', $args[0]);
10 return hexpr_cond(hexec('is_array', $args[0]), hexec('count', $args[0]),
11 hexec('strlen', $args[0]));