Horje

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



Related Articles
How to get URL from a Tag in PHP PHP XML Tutorial


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



Share on: