function vancode2int

Same name and namespace in other branches
  1. 6.x drupal-6.x/modules/comment/comment.module \vancode2int()

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.

Archivo

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

Código

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