![]() |
Documentación GVHIDRA 3.1.5
|
Ir al código fuente de este archivo.
Estructuras de datos | |
class | Smarty_Compiler |
Namespaces | |
namespace | Smarty |
Funciones | |
_smarty_sort_length ($a, $b) |
_smarty_sort_length | ( | $ | a, |
$ | b | ||
) |
compare to values by their string length
private
string | $a | |
string | $b |
Definición en la línea 2302 del archivo Smarty_Compiler.class.php.
{ if($a == $b) return 0; if(strlen($a) == strlen($b)) return ($a > $b) ? -1 : 1; return (strlen($a) > strlen($b)) ? -1 : 1; }