Jump to content

Recommended Posts

<?php
// Your string of words
$str = "house, place, free,";
// Separate them at the commas, into an array
$str = explode(',', $str);
// Set the $html variable so we can add to it with the following foreach
$html = '';

foreach($str as $val)
{
        // EDIT: Trim $val so spaces don't matter
$val = trim($val);
$html .= '<a href="url='.$val.'">'.$val.'</a> ';
}

echo $html;
?>

 

And you can add to that string as much as you want, as long as the words are separated by commas.

Link to comment
https://forums.phpfreaks.com/topic/116732-transform-string/#findComment-600233
Share on other sites

Comma and spaces, actually.  I'd probably use:

 

$str = split(',[ ]*', $str);

 

That way if you forget a space, it'll still work.  Also, why do you have href="url=something"?  That makes little sense.

 

No need to use regex here, not complex enough... explode and trim will be quite a bit quicker.

Link to comment
https://forums.phpfreaks.com/topic/116732-transform-string/#findComment-600251
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.