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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T15:07:48+00:00 2026-05-20T15:07:48+00:00

I have noticed a strange behaviour of a str_replace function. Can you tell me

  • 0

I have noticed a strange behaviour of a str_replace function.
Can you tell me why instead of number 3 in no_2 i get no_4 ?

Here is the case:

$pattern = array(1,2,3);
$change = array(1,3,4); 
$sql = "SELECT * FROM %s WHERE no_1 IN (%s) AND no_2 IN (%s) AND no_3 IN (%s)";

$test_multiply[] = str_replace($pattern, $change, $sql);

Which gives:

Array ( [0] => SELECT * FROM %s WHERE no_1 IN (%s) AND no_4 IN (%s) AND no_4 IN (%s) ) 

Can you tell me what should I do to receive no_3 instead of no_2?

  • 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-05-20T15:07:49+00:00Added an answer on May 20, 2026 at 3:07 pm

    The documentation for str_replace() says (quoting) :

    Because str_replace() replaces left to
    right, it might replace a previously
    inserted value when doing multiple
    replacements.

    I believe you are precisely in this situation :

    • Your no_2 gets replaced to no_3 — because of the second item in your $pattern and $change arrays
    • But, then, that no_3 gets replaced to no_4 — because of the thid item in your $pattern and $change arrays

    To avoid that specific situation, you might try reversing the order of the items in those two arrays :

    $pattern = array(3, 2, 1);
    $change = array(4, 3, 1); 
    

    And you’d get the following result :

    SELECT * FROM %s WHERE no_1 IN (%s) AND no_3 IN (%s) AND no_4 IN (%s)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just noticed something strange. If I have this XML: <level number=7 background=background_5> and
I have noticed a strange behaviour when intercepting the preUpdate row hook in Propel
I am creating a responsive website, and have just noticed a strange behaviour in
after adding adMob ads to my application, I have noticed some strange memory behaviour.
I have noticed a strange piece of behaviour when using MessageDlg and attempting to
I have noticed a strange behaviour of FULL OUTER JOIN in Oracle 11. I
I have noticed a strange behaviour of TextBox while BorderThickness property is set to
I have noticed a rather strange behaviour in IE. I have a HTML form
I just noticed a strange behaviour in IE7. I have radio buttons with associated
I've noticed a strange behaviour of the live() function in jQuery: <a href=# id=normal>normal</a>

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.