function drupal_ucfirst in Drupal 6
Same name and namespace in other branches
- 4 includes/unicode.inc \drupal_ucfirst()
- 5 includes/unicode.inc \drupal_ucfirst()
- 7 includes/unicode.inc \drupal_ucfirst()
Capitalize the first letter of a UTF-8 string.
5 calls to drupal_ucfirst()
- comment.tpl.php in themes/
garland/ comment.tpl.php - node_menu in modules/
node/ node.module - Implementation of hook_menu().
- system_modules in modules/
system/ system.admin.inc - Menu callback; provides module enable/disable interface.
- system_modules_confirm_form in modules/
system/ system.admin.inc - Display confirmation form for dependencies.
- taxonomy_help in modules/
taxonomy/ taxonomy.module - Implementation of hook_help().
File
- includes/
unicode.inc, line 462
Code
function drupal_ucfirst($text) {
// Note: no mbstring equivalent!
return drupal_strtoupper(drupal_substr($text, 0, 1)) . drupal_substr($text, 1);
}