function vancode2int

7.x comment.module vancode2int($c = '00')
6.x comment.module vancode2int($c = '00')

Decode vancode back to an integer.

1 call to vancode2int()
comment_save in drupal-7.x/modules/comment/comment.module
Accepts a submission of new or changed comment content.

File

drupal-7.x/modules/comment/comment.module, line 2510
Enables users to comment on published content.

Code

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