wc_strtolower( string $string )
Make a string lowercase.
Description Description
Try to use mb_strtolower() when available.
Parameters Parameters
- $string
-
(Required) String to format.
Return Return
(string)
Source Source
File: includes/wc-formatting-functions.php
function wc_strtolower( $string ) { return function_exists( 'mb_strtolower' ) ? mb_strtolower( $string ) : strtolower( $string ); }
Changelog Changelog
Version | Description |
---|---|
2.3 | Introduced. |