function comment_alphadecimal_to_int

Decodes a sorting code back to an integer.

See also

comment_int_to_alphadecimal()

1 call to comment_alphadecimal_to_int()

File

drupal/core/modules/comment/comment.module, line 1840
Enables users to comment on published content.

Code

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