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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T15:34:52+00:00 2026-06-16T15:34:52+00:00

I am trying to make a class that can process strings with un defined

  • 0

I am trying to make a class that can process strings with un defined variables. Is this possible? or is there a better way?

For instance, if I have the following and would like this class Looper to take $str_1 and output it with the variables $fname and $lname filled out … then somewhere else i can reuse Looper class and process $str_2 since they both need $fname and $lname.

class Looper {
    public function processLoop($str){
        $s='';
        $i=0;
        while ($i < 4){
            $fname = 'f' . $i;
            $lname = 'l' . $i;

            $s .= $str . '<br />';
            $i++;
        }
        return $s;
    }
}

$str_1 = "First Name: $fname, Last Name: $lname";
$rl = new Looper;
print $rl->processLoop($str_1);

$str_2 = "Lorem Ipsum $fname $lname is simply dummy text of the printing and typesetting industry";
print $rl->processLoop($str_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-06-16T15:34:53+00:00Added an answer on June 16, 2026 at 3:34 pm

    Why not just use strtr:

    $str_1 = "First Name: %fname%, Last Name: %lname%";
    echo strtr($str_1, array('%fname%' => $fname, '%lname%' => $lname));
    

    So in the context if your class:

    public function processLoop($str){
        $s='';
        $i=0;
        while ($i < 4){
            $tokens = array('%fname%' => 'f' . $i, '%lname%' => 'l' . $i);
            $s .= strtr($str, $tokens) . '<br />';
            $i++;
        }
        return $s;
    }
    

    Likewise if you dont want to be dependent on named placeholders you could use positional placeholders via sprintf:

    public function processLoop($str){
        $s='';
        $i=0;
        while ($i < 4){
            $s .= sprintf($str, 'f' . $i, l' . $i) . '<br />';
            $i++;
        }
        return $s;
    }
    

    In that case your $str argument would look like "First Name: %s, Last Name: %s"

    So over all usage:

    // with strtr
    
    $str_1 = "First Name: %fname%, Last Name: %lname%";
    $rl = new Looper;
    print $rl->processLoop($str_1);
    
    
    // with sprintf
    
    $str_1 = "First Name: %s, Last Name: %s";
    $rl = new Looper;
    print $rl->processLoop($str_1);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to make a class that will represent two different behaivours at
I am trying to extend the mysqli class to make a helper class that
A am trying to make a program that takes a signal from one class
I'm trying to build a small class-like container that will make it a little
I'm trying to make spreadsheet with class/method modifiers. The spreadsheet itself can be located
I'm trying to make a component manager class in C++ that is similar to
I'm trying to make a simple C# web server that, at this stage, you
I'm trying to build a progressbar class that can have an arbitrary number of
I'm trying to make a class where I put a key and value into
I´m trying to make a custom component to javafx, so I make my class

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.