Horje
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





Category :
Web Tutorial
Sub Category :
PHP XML Tutorial
Uploaded by :
Admin


Read Article
https://horje.com/learn/1434/reference