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 8021425
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T21:58:39+00:00 2026-06-04T21:58:39+00:00

Right now , I have a return function : return array_unique(array_merge( $sizes, $custom_sizes ));

  • 0

Right now , I have a return function :

return array_unique(array_merge( $sizes, $custom_sizes ));

My problem is that a certain key can be lower case in one, and upper case in other .

For example , I can get “Thumbnails” in $sizes and “thumbnails” in $custom_sizes – at which case I would of course want to drop one .

(same case for names :

“starwars” vr. “StarWars” vr. “Starwars” vr. “STARWARS“)

How can I make array_unique() be non case – sensitive ?

EDIT I : Following comments , a clarification :

I would also want to be able to CHOOSE which version to be kept (the one from the 1st array, or the one from the second..)

  • 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-04T21:58:42+00:00Added an answer on June 4, 2026 at 9:58 pm

    First hit on google is the PHP.net page which offers:

    function in_iarray($str, $a){
        foreach($a as $v){
            if(strcasecmp($str, $v)==0){return true;}
        }
        return false;
    }
    
    function array_iunique($a){
        $n = array();
        foreach($a as $k=>$v){
            if(!in_iarray($v, $n)){$n[$k]=$v;}
        }
        return $n;
    }
    
    $input = array("aAa","bBb","cCc","AaA","ccC","ccc","CCC","bBB","AAA","XXX");
    $result = array_iunique($input);
    print_r($result);
    
    /*
    Array
    (
        [0] => aAa
        [1] => bBb
        [2] => cCc
        [9] => XXX
    )
    */
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Right now I have a tableview, and I can assure you that the delegate
I have a multi-dimensional array right now that looks like this: function art_appreciation_feeds() {
Good day! I right now have a function the drags an element from a
Right now I have these buttons that line up nicely, but they have some
Right now I have this jQuery('.widget-prop').keyup(function() { var prop = jQuery(this).attr('id'); var val =
Right now I have a function which takes my uploaded file, checks the extension,
Right now I have this code. <?php error_reporting(E_ALL); require_once('content_config.php'); function callback($buffer) { // replace
I right now have a comet page, that if i call session_start at the
Right now I have to pull up Pending Changes window, right-click on the file
Right now I have some functionality working but its really ugly and I know

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.