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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T09:57:35+00:00 2026-05-31T09:57:35+00:00

Using sprintf() how can I replace multiple placeholders in a string with one value?

  • 0

Using sprintf() how can I replace multiple placeholders in a string with one value? I know normally you will pass 1 variable for each placeholder, but I understand if you use the format %1$s instead of %s you can pass a single value, but I can’t seem to get it to work.

I’m actually using this as a parametrised sql query, but for ease here’s a single example

$name   = "Bill";
$string = "hello ?, your name is ? ";
$string = sprintf(str_replace("?","'%1$s'",$string ),$name);

This doesn’t seem to work. I’d also like it to work for a single placeholder, e.g.

$name   = "Bill";
$string = "hello ?";
$string = sprintf(str_replace("?","'%1$s'",$string ),$name);
  1. Is it possible to replace multiple placeholders from one value, and 2. Can a single statement be written to handle single or multiple placeholders?

Note: I’m specifically not talking about passing arrays using vsprintf() as there is only 1 value. Seems pointless to me to pass the same value multiple times.

Thanks

  • 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-31T09:57:37+00:00Added an answer on May 31, 2026 at 9:57 am

    Yes and Yes.

    It doesn’t work because you are evaluating $s in str_replace. As a rule of thumb, I always use ' instead of " when declaring string literals.

    $name   = 'Bill';
    $string = 'hello ?, your name is ? ';
    $string = sprintf(str_replace('?','\'%1$s\'',$string ),$name);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to populate a string with a double value using a sprintf
When there is a string value such as 3.76 how can this be converted
I know about sprintf() , but how can I use the same parameter more
When using sprintf, the compiler warns me that the function is deprecated. How can
I'm using sprintf() in PHP but it displays nothing on the page. Here's what
currently I am using: $result = new SQLite3(sprintf(users/USERIDS_DB.sqlite)); $numRows = $result->exec (SELECT count(*) FROM
Using PyObjC , you can use Python to write Cocoa applications for OS X.
I'm using sprintf(newpath, %s%s, cCurrentPath, \\init.scm); to add \init.scm to current dir path but
I'm trying to pad a time (playtime of an MP3) using sprintf() in PHP.
How can I write from a file to shared memory using the Win32 API?

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.