Smarty Forum Index Smarty
WARNING: All discussion is moving to https://reddit.com/r/smarty, please go there! This forum will be closing soon.

PHP - Smarty search and replace

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Smarty Forum Index -> General
View previous topic :: View next topic  
Author Message
bobbybackblech
Smarty n00b


Joined: 17 May 2015
Posts: 1

PostPosted: Sun May 17, 2015 9:40 am    Post subject: PHP - Smarty search and replace Reply with quote

Hello Guys Very Happy

I have this smarty variable
Code:
    {$article.image.thumbnails[0].sourceSet}


It returns a string with an url

Code:
string(158) "http://domain.com/media/picture.jpg, http://domain.com/media/picture@2.jpg


Now i want to replace the URL inside the smarty variable with a CDN URL e.g

http://domain.com/media/ becomes //cdn.domain.com/media/

How can i do this within smarty ?

I tried:
Code:
 {assign var=image value=article.image.thumbnails[0].sourceSet}
{$image|replace:"http://domain.com/media/":"//cdn.domain.com/media/"}


But this does not work.
Back to top
View user's profile Send private message
U.Tews
Administrator


Joined: 22 Nov 2006
Posts: 5068
Location: Hamburg / Germany

PostPosted: Mon May 18, 2015 4:04 am    Post subject: Reply with quote

You had a missing $
Code:
{assign var=image value=$article.image.thumbnails[0].sourceSet}

you could use also

Code:
{$article.image.thumbnails[0].sourceSet|replace:"http://domain.com/media/":"//cdn.domain.com/media/"}
Back to top
View user's profile Send private message
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Smarty Forum Index -> General All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group
Protected by Anti-Spam ACP