ok Posted October 19, 2008 Share Posted October 19, 2008 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 More sharing options...
thebadbad Posted October 19, 2008 Share Posted October 19, 2008 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"> ?> Link to comment https://forums.phpfreaks.com/topic/129057-automatic-inserting-of-string/#findComment-669116 Share on other sites More sharing options...
ghostdog74 Posted October 19, 2008 Share Posted October 19, 2008 $str = '<a href="/sudden/businesses/display.cfm?recordid=2412">'; $domain = 'http://mydomain.com'; echo str_replace('<a href="','<a href="'.$domain,$str); Link to comment https://forums.phpfreaks.com/topic/129057-automatic-inserting-of-string/#findComment-669162 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.