Skip to content
Advertisement

Tag: dom

Create array from DOM node values in PHP

I’m trying to create an array of amazon product variants using DOM php, My desired array should look like; Here is my code: Though my code is working but there are some mistakes in code and it might wont work for all amazon products. so I need suggestions and improvement. and also my output is a json object : while

Return array of all div class names from html source using php

from a html source, using dom and xpath how would I return an array containing all the div class names? I use the following which returns all the div class names that contain “XX”, but don’t know the query to use for $targets to return all. I know this should be simple but I can’t find one that works. Thanks.

Replace a string of text from the dom with PHP

I am trying to access the value of 6200° from the dom and then replace it with new text. For example I would want to replace 6200 with 8500. This is what the code I have been using after doing some searching but still very new to php and cant get the value. $kelvin2700 = find(‘span[class=”.options_958_1_label”]’); Answer If I understand

How to Split the nodevalues on php dom element

i scrape the website, i am getting result of below in single element, i want to split the one by one element. code: input:- Current output:- expecting output:- Answer Each of the text parts is a part of the <div> tag, so this code just assumes that you want the text from each direct child not and adds it to

How can I show XML external entities in a php page?

I am currently working on a little library project using XML to define books, and php to do a search using title/author then showing that specific book in the browser. So I made a bunch of books in XML files, then linked those files as external entities in my main XML file. I used a DTD to define the entities,

how to dom html url with php?

This is the URL that I want to parse: http://www.tsetmc.com/Loader.aspx?ParTree=151313&Flow=0 I use simple_html_dom.php but it can’t read the HTML because the HTML is encoded. So I think I should parse online and webpage source. Is there any way that I can parse this web site? The source code looks like this: my code: Answer The issue, as you pointed out

Invalid characters in XML tag name

We have a huge database where users can create custom fields. Every UTF-8 character is allowed in their name. Until a few weeks ago, when they export their data in XML, only invalid characters that …

How can i take the element name inside the Html

How can i able to find the date format in UTC from the html element 2018-06-14T03:00:00.000Z. I am new in php so i don’t know how to grab it. Answer You might do it using find for getting the div with classname fi-mu__info__datetime and then getting the data-utcdate: If you only want the first one you could use:

Advertisement