vancode2int

Definition

vancode2int($c = '00')
modules/comment.module, line 1795

Description

Decode vancode back to an integer.

Code

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

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.