Skip to content

Instantly share code, notes, and snippets.

@ekariz
ekariz / gist:4b3a827a2fa0991683791e1ff0a65d23
Created September 6, 2023 00:33
php clone table rows and replace cell values
<?php
$html = '<table class="samples">
<thead>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
@ekariz
ekariz / gist:2bdd11c191b55906a3c036973d0f47f9
Created September 6, 2023 00:32
clone table rows in php DOMDocument
<?php
$html = '<table border="1">
<tr>
<td>property</td>
<td>specification</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
</tr>