PageRenderTime 42ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/addons/DynamicMTML.pack/php/tags/modifier.intval.php

http://github.com/movabletype/DynamicMTML
PHP | 7 lines | 7 code | 0 blank | 0 comment | 1 complexity | c5dff2586475acbb50387a85bc3b0746 MD5 | raw file
Possible License(s): MIT, GPL-2.0
  1. <?php
  2. function smarty_modifier_intval( $text, $arg ) {
  3. $val = intval( trim( $text ) );
  4. if (! $val ) $val = 0;
  5. return $val;
  6. }
  7. ?>