You are here

function _strlen in Coder 7.2

Returns the length of a string.

Parameters

string $text: ???

Return value

int ???

See also

drupal_strlen()

2 calls to _strlen()
_coder_review_read_and_parse_file in coder_review/coder_review.common.inc
Parses and reads source files into a format for easier review validation.
_coder_review_settings_array in coder_review/coder_review.module
Generates a settings array for either modules or themes names.

File

coder_review/coder_review.common.inc, line 1630
Common functions used by both the drush and form interfaces.

Code

function _strlen($text) {
  return function_exists('drupal_strlen') ? drupal_strlen($text) : strlen($text);
}