Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8802393
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T01:04:45+00:00 2026-06-14T01:04:45+00:00

As you know, we need to use mb_strtolower() instead of strtolower() while we’re working

  • 0

As you know, we need to use mb_strtolower() instead of strtolower() while we’re working with utf-8 data:

$str = 'برنامه';
echo strtolower($str);
----------------------
output: �����

It’s all gone to undefined chars, now I use mb_strtolower()

$str = 'برنامه';
echo mb_strtolower($str);
----------------------
output: �����

still the same results, now:

$str = 'برنامه';
echo mb_strtolower($str,  mb_detect_encoding($str));
----------------------
output: برنامه

Now it’s fixed, so the way to use mb_strtolower is to also having mb_detect_encoding.

Now my problem is that I want to do the same thing with array_map:

$results_array = array_map('mb_strtolower', $results_array);

How I’m supposed to use mb_detect_encoding with the above line?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T01:04:46+00:00Added an answer on June 14, 2026 at 1:04 am

    The solution is to tell mb_strtolower what your string encoding is:

    echo mb_strtolower($str, 'UTF-8');
    

    If you don’t want to supply this parameter every time, set it once for all mb_ functions:

    mb_internal_encoding('UTF-8');
    

    Then you can call any mb_ function and it will handle your string as UTF-8:

    echo mb_strtolower($str); // works without second parameter now
    

    mb_detect_encoding happens to return 'UTF-8' because it detected it, but it is generally unreliable, since it’s conceptually impossible to reliably detect arbitrarily encoded strings. Know what your strings are encoded in and pass this information explicitly.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

if given a graph problem how do we know whether we need to use
Somebody know how use OpenX (php app) with Django? I need to use OpenX
I need to use method like: DoSomething<(T)>(); But i don't know which Type i
I'm need to use JUnit 3, I know in JUnit 4 there is a
Why does C++ need and use pointers? I know they add power to the
I need to know how to use a Dialog class in J2me. Any example.
I need to know what should I use to store the property? I'm still
In order to use normal mapping in GLSL shaders, you need to know the
I'm new to XSLT. I know I need to use xsl:for-each-group, but I can't
I know I need to use Template Columns, but I am not clearly understanding

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.