wc_strtoupper()WC 3.1.0

Wrapper for mb_strtoupper which see's if supported first.

Хуков нет.

Возвращает

Строку.

Использование

wc_strtoupper( $string );
$string(строка) (обязательный)
String to format.

Список изменений

С версии 3.1.0 Введена.

Код wc_strtoupper() WC 8.7.0

function wc_strtoupper( $string ) {
	$string = $string ?? '';
	return function_exists( 'mb_strtoupper' ) ? mb_strtoupper( $string ) : strtoupper( $string );
}