vancode2int

Versions
4.7 – 7
vancode2int($c = '00')

Decode vancode back to an integer.

▾ 1 function calls vancode2int()

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

Code

modules/comment/comment.module, line 1994

<?php
function vancode2int($c = '00') {
  return base_convert(substr($c, 1), 36, 10);
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.