Skip to content
Advertisement

Replace all urls with minified urls within a string containing mixed content

I have string with links and iam going to extract links into an array as following

JavaScript

results

JavaScript

Now i will use bit.ly API function gobitly() for link shorten that ends with array like this

JavaScript

the results of $links[]

JavaScript

Now I want to rebuild the string and replace links to the new one to be like this

JavaScript

Advertisement

Answer

Since you know the key of the url to be replaced, you can simply loop over then and use str_replace to replace each shorturl with the original;

JavaScript

The text you want to filter goes here. http://t.com/1xx, http://t.com/z112,http://t.com/3431

Try it online!

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement