PHP - How to replace image src in a dynamic HTML string
I am going to show you example of php replace image src om html string. I’m going to show you about How to replace image src in a dynamic HTML string in php. i would like to share with you php replace img tag in string. i explained simply step by step replace image src in html string php.
Sometime we need to change src in a dynamic html string with php. i mean if you store html string into database and you have to update src path for that string when you display in front end side. so here i will give you very simple example of replace image src in html string using php.
Let' see bellow index.php file and output so you can easily understand how it works using DOMDocument.
index.php
<?php
$htmlString = '<strong>Image One:</strong><br/>
<img src="imageone.png" /><br/>
<strong>Image Two:</strong><br/>
<img src="imagetwo.png" /><br/>
<strong>Image Three:</strong><br/>
<img src="imagethree.png" /><br/>';
$doc = new DOMDocument();
$doc->loadHTML($htmlString);
$tags = $doc->getElementsByTagName('img');
foreach ($tags as $tag) {
$oldSrc = $tag->getAttribute('src');
$newScrURL = 'upload/images/'.$oldSrc;
$tag->setAttribute('src', $newScrURL);
$tag->setAttribute('data-src', $oldSrc);
}
$htmlString = $doc->saveHTML();
print($htmlString);
output:
<strong>Image One:</strong><br>
<img src="upload/images/imageone.png" data-src="imageone.png"><br>
<strong>Image Two:</strong><br>
<img src="upload/images/imagetwo.png" data-src="imagetwo.png"><br>
<strong>Image Three:</strong><br>
<img src="upload/images/imagethree.png" data-src="imagethree.png"><br>
I hope it can help you...

Hardik Savani
I'm a full-stack developer, entrepreneur and owner of Aatman Infotech. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- PHP Create Directory If It Doesn't Exist Example
- How to Get Difference Between Two Dates in PHP?
- PHP Codeigniter Curl Post Request Example
- How to Convert String Date to Date Format in PHP?
- How to convert php array to json object with example?
- How to fetch single row from database in php codeigniter?
- PHP and MySQL - Login with Google Account Example
- PHP - Input multiple tags with dynamic autocomplete example
- How to Find Day Name from Specific Date in PHP?
- How to Remove Null Values from Array in PHP?