We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mb_*()
function_exits()
Because function_exists() is expensive to run.
function_exists()
function mbfunctions_exist() { static $test = null; if ( $test !== null ) { return $test; } $test = ( function_exists( 'mb_convert_encoding' ) && function_exists( 'mb_convert_kana' ) && function_exists( 'mb_detect_encoding' ) && function_exists( 'mb_strcut' ) && function_exists( 'mb_strlen' ) ); return $test; }
This ticket should be opened as soon as we add some other i18n fixes.
The text was updated successfully, but these errors were encountered:
This tickets should be opened after some tickets are merged.
Sorry, something went wrong.
No branches or pull requests
Because
function_exists()
is expensive to run.This ticket should be opened as soon as we add some other i18n fixes.
The text was updated successfully, but these errors were encountered: