Jump to content

Automatic inserting of string?


ok

Recommended Posts

Hi guys

 

let say i have this string below,

<a href="/sudden/businesses/display.cfm?recordid=2412">

 

and i want to insert this string into that string above,

http://mydomain.com

 

now it should look like this below,

<a href="http://mydomain.com/sudden/businesses/display.cfm?recordid=2412">

 

could you show me how is this done?

 

Thank you in advance.

 

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/129057-automatic-inserting-of-string/
Share on other sites

If you want to convert relative paths to absolute paths, have a look at the relative2absolute() function.

 

If you simply want to insert the latter string into the former:

 

<?php
$str = '<a href="/sudden/businesses/display.cfm?recordid=2412">';
$domain = 'http://mydomain.com';
$parts = explode('"', $str);
$str = $parts[0] . '"' . $domain . $parts[1] . '">';
//<a href="http://mydomain.com/sudden/businesses/display.cfm?recordid=2412">
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.