| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | function smarty_modifier_demodhex($input) |
||
| 10 | { |
||
| 11 | $hex = preg_replace( |
||
| 12 | array('/c/', '/b/', '/d/', '/e/', '/f/', '/g/', '/h/', '/i/', '/j/', '/k/', '/l/', '/n/', '/r/', '/t/', '/u/', '/v/'), |
||
| 13 | array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'), |
||
| 14 | $input); |
||
| 15 | |||
| 16 | return hexdec($hex); |
||
| 17 | } |