function vancode2int

vancode2int($c = '00')

Decode vancode back to an integer.

File

modules/comment/comment.module, line 2514
Enables users to comment on published content.

Code

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

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!comment!comment.module/function/vancode2int/7.x