Horje

Tips (Total 1)


# Tips-1) How to get URL from a Tag in PHP

This is very easy to do using SimpleXML:

How to extract URL from a Tag in PHP

Here is solution.
index.php
Example: PHP
<?php
$a = new SimpleXMLElement('<a href="www.something.com">Click here</a>');
echo $a['href']; // will echo www.something.com
?>

Output should be:

How to extract URL from a Tag in PHP