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 noticed a strange behaviour in my Import Service today when I tried to
I have noticed strange behavior when using term-mode if I kill word in termmode
I am only a beginner to Android, but I have noticed a number of
I am using FileWriter and I have noticed strange behavior. I buffer my collection
I have just noticed a strange behavior of ComboBox component. I am using it
Let me start from a real life example: Customer: Alex, just noticed something strange
I noticed a few strange behaviors in a Windows Forms scenario which involves threads
I have the following stored procedure that I working on. I have noticed that
I'm gettign this strange character instead of an apostrophe on a page that's powered
On our MOSS Enterprise environment, we have a strange problem. From time to time,

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.