1.20.x drupal.inc drupal_strtoupper($text)

Uppercase a UTF-8 string.

Deprecated

since 1.0.0

See also

backdrop_strtoupper()

Related topics

File

includes/drupal.inc, line 2445
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

function drupal_strtoupper($text) {
  watchdog_deprecated_function('drupal', __FUNCTION__);
  return backdrop_strtoupper($text);
}