wc_strtoupper( string $string )
Wrapper for mb_strtoupper which see’s if supported first.
Description Description
Parameters Parameters
- $string
-
(Required) String to format.
Return Return
(string)
Source Source
File: includes/wc-formatting-functions.php
function wc_strtoupper( $string ) { return function_exists( 'mb_strtoupper' ) ? mb_strtoupper( $string ) : strtoupper( $string ); }
Changelog Changelog
Version | Description |
---|---|
3.1.0 | Introduced. |