vancode2int

  1. drupal
    1. 4.7
    2. 5 comment.module
    3. 6 comment.module
    4. 7 comment.module
Versions
4.7 – 7 vancode2int($c = '00')

Decode vancode back to an integer.

▾ 1 function calls vancode2int()

comment_save in modules/comment.module
Accepts a submission of new or changed comment content.

Code

modules/comment.module, line 1796

<?php
function vancode2int($c = '00') {
  return base_convert(substr($c, 1), 36, 10);
}
?>