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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T14:56:00+00:00 2026-05-30T14:56:00+00:00

I have an array called $featuresSEO that has a number of words in it

  • 0

I have an array called $featuresSEO that has a number of words in it like:

Array (
    [0] => Japan 
    [1] => Japanese 
    [2] => Tokyo 
    [3] => Yokohama 
    [4] => Osaka 
    [5] => Asian 
    [6] => Nagoya 
) 

I then have a string like follows:

 Searching the |*-*| Dating membership database is the key to locating |*-*| people
 you would be interested in. You can search for |*-*| Singles including |*-*| Women
 and |*-*| Men in any location worldwide. Join now to search for |*-*| Singles.

I’ve been trying to replace the instances of |*-*| with random words from the Array. I’ve tried str_replace() but couldn’t get the random aspect working.

Can someone push me in the right direction?

thx

  • 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-30T14:56:02+00:00Added an answer on May 30, 2026 at 2:56 pm

    The code for replace-only-first-match is borrowed from here. The following code uses each word from the list only once:

    $wordlist = array(
        'Japan',
        'Japanese',
        'Tokyo',
        'Yokohama',
        'Osaka',
        'Asian',
        'Nagoya'
    );
    $string = "
    Searching the |*-*| Dating membership database is the key to locating |*-*| people
    you would be interested in. You can search for |*-*| Singles including |*-*| Women
    and |*-*| Men in any location worldwide. Join now to search for |*-*| Singles.
    ";
    $replace = '|*-*|';
    while(true){
        $index = strpos($string, $replace);
        if($index === false){
            // ran out of place holder strings
            break;
        }
        if(count($wordlist) == 0){
            // ran out of words
            break;
        }
        $word = array_splice($wordlist, rand(0, count($wordlist) - 1), 1);
        $string = substr_replace($string, $word[0], $index, strlen($replace));
    }
    echo $string;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an Array called Upval that has 16 Integer values that I would
I have an array called $users (below), that i would like to print first_name
I have a pretty simple problem. Basically I have an array called $list that
I have a struct array called AnalysisResults , that may contain any MATLAB datatypes,
I have an array of sprites called segments and I would like to skip
I have an array (called array in the code below) which contains a number
I have a multi-dimensional array right now that looks like this: function art_appreciation_feeds() {
I have an array called [self.places objectAtIndex:indexPath.row]; that I am trying to output into
I have an array called followers and I would like to know how I
My problem is: I have an array called $ownerArray that another array need to

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.