wc_strtoupper()
Wrapper for mb_strtoupper which see's if supported first.
No Hooks.
Return
String
.
Usage
wc_strtoupper( $string );
- $string(string) (required)
- String to format.
Changelog
Since 3.1.0 | Introduced. |
wc_strtoupper() wc strtoupper code WC 9.6.1
function wc_strtoupper( $string ) { $string = $string ?? ''; return function_exists( 'mb_strtoupper' ) ? mb_strtoupper( $string ) : strtoupper( $string ); }