In this particular, How to Get HTML Tag Value in PHP, article we use the PHP DOMDocument Class which represents the HTML or XML document also serves as the root of the document tree.

Here we discuss 4 tasks where we use the PHP DOMDocument class to get the value of HTML tags,
- How to get a paragraph
<p>
tag value using PHP - How to get
<span>
tag value using PHP - How to store
<span>
value in PHP - How to access HTML element in PHP
Table of Content
How to get a paragraph <p>
tag value using PHP
On the below example How to get p tag value using PHP, we create a paragraph with HTML ID attribute and set the text inside the P tag.
1 2 3 4 5 6 |
<?php $htmlEle = "<p id='paraID'>Paragraph Sports</span>"; $domdoc = new DOMDocument(); $domdoc->loadHTML($htmlEle); echo $domdoc->getElementById('paraID')->nodeValue; |
Output: Paragraph Sports
Compiler: https://phpcoder.tech/php-online-editor/
Code Explanations:
- Using the PHP DOMDocument Class, call the DOMDocument object.
- Call the predefined
loadHTML()
function with variable parameters. - Using the
getElementById()
DOM function we get the HTML element value.
How to get <span>
tag value using PHP
1 2 3 4 5 6 |
<?php $htmlEle = "<span id='SpanID'>Span Sports</span>"; $domdoc = new DOMDocument(); $domdoc->loadHTML($htmlEle); echo $domdoc->getElementById('SpanID')->nodeValue; |
Output: Span Sports
This is also the same process and the code with changed ID.
How to Store span Value in PHP
If you want to store only span value then do the same code and create a variable on the last and assign the previous value what you get using PHP DOMDocument.
1 2 3 4 5 6 7 8 9 |
<?php $htmlEle = "<span id='SpanID'>Span Sports</span>"; $domdoc = new DOMDocument(); $domdoc->loadHTML($htmlEle); $spanValue = $domdoc->getElementById('SpanID')->nodeValue; <strong>//Store span Value in PHP variable</strong> echo $spanValue; |
Output: Span Sports
How to Access HTML Element in PHP
Here is complete quick summary of how to get Html tag value in PHP or access HTML element,
- getElementsByTagName(‘a’)
- getElementById(‘SpanID’)
For more you can check on the officials site, https://www.php.net/manual/en/class.domdocument.php
Here is a complete reference about access the HTML element in PHP with an example.
Also Check:
- How to Convert JSON to Array PHP
- How to Store Data In Cookies Using JavaScript
- Steps to Upload Multiple Images in PHP with Preview
- Multiple Barcode Generator in PHP
Happy Coding..!
7 thoughts to “How to Get HTML Tag Value in PHP”