function vancode2int

Decode vancode back to an integer.

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

File

modules/comment/comment.module, line 2528

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.