Jump to content

[Help] [PHP] Variables/Strings


Shelby_Polo

Recommended Posts

I'm looking for some help with converting special characters within a string to a different character.

 

Current Code:

<?php echo $use['value'] ?>

 

$use is an array

['value'] is the string within the array

 

I'm taking the data from $use['value'] and using it in a URL. The problem is if $use['value'] is something like "Home Projects & Hobbies" the URL gets messed up; it will look like /Home%20Projects%20&%20Hobbies.

 

So, if possible, I want to write a little script that will take the spaces of the string and convert them into "-" and take the "&" symbol and convert it into "and".

bike.png

Suggest a poll for Tip.it - Here!

Link to comment
Share on other sites

I'm using a php loop that creates the links here:

49667.png

 

Code that makes the links:

<a href="<?php echo Mage::getBaseUrl();?><?php echo $use['value'] ?>"><?php echo $this->htmlEscape( $use['value'] ) ?></a>

 

Important part from above:

<?php echo $use['value'] ?>

 

$use['value'] is used for the end of the url, for example www.website.com/candlemaking

 

The trouble is when $use['value'] has spaces or &

bike.png

Suggest a poll for Tip.it - Here!

Link to comment
Share on other sites

Which is what's happening, so instead I want to change spaces :arrow: "-" and "&" :arrow: "and" within the string.

 

Like if I have a page www.website.com/home-projects-and-hobbies/ but the string is "home projects & hobbies", how can I change it to use the dashes (as well as "&" to "and")?

bike.png

Suggest a poll for Tip.it - Here!

Link to comment
Share on other sites

Just as an fyi, this worked; thanks John.

 

<?php
$str = $use['value'];
$order = array(' ', '&');
$replace = array('-', 'and');

$newstr = str_replace($order, $replace, $str);

echo $newstr;
?>

Np.

polvCwJ.gif
"It's not a rest for me, it's a rest for the weights." - Dom Mazzetti

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.