vancode2int
Definition
vancode2int($c = '00')
modules/comment/comment.module, line 1990
Description
Decode vancode back to an integer.
Code
<?php
function vancode2int($c = '00') {
return base_convert(substr($c, 1), 36, 10);
}
?> vancode2int($c = '00')
modules/comment/comment.module, line 1990
Decode vancode back to an integer.
<?php
function vancode2int($c = '00') {
return base_convert(substr($c, 1), 36, 10);
}
?>