Skip to content

Instantly share code, notes, and snippets.

View maya-hamdan's full-sized avatar
🏠
Working from home

Maya Hamdan maya-hamdan

🏠
Working from home
View GitHub Profile
@molotovbliss
molotovbliss / ul-li-to-array.php
Last active June 5, 2023 23:31
Convert html > ul > li to a PHP array
// original sauce: http://stackoverflow.com/a/9033361/158325
// dummy ul > li html content to parse into an array
$html = "<ul>
<li>Free shipping</li>
<li>Equipment & speakesr</li>
<li>Taxes & fees apply</li>
</ul>";
// call function to convert