0
votes
2answers
40 views
PHP Command-line scripts are ignoring php.ini and ini_set(’memory_limit’,…) directives.
Hello, I am facing the common "Fatal error: Out of memory (allocated 30408704) (tried to allocate 24 bytes)..." PHP Fatal error. Pages served via Apache are not exhibiting this beh …
0
votes
1answer
20 views
DOMElement cloning and appending: ‘Wrong Document Error’
There's something I don't fully understand about node cloning with the PHP's DOM api. Here's a sample file that quickly duplicates the issue I'm coming across.
$doc = new DOMDoc …
-1
votes
3answers
33 views
How do I create an XML file with php and have it prompt to download?
I'm using domdocument to create an xml file:
$dom = new DOMDocument('1.0', 'iso-8859-1');
echo $dom->saveXML();
When I click the link to this file, it simply displays it as a …
0
votes
1answer
40 views
PHP DomDocument Save XML with HTML
Hi,
How would I save an XML file opened with DomDocument so that the HTML inside won't be encoded into HTML entities?
0
votes
1answer
49 views
DOMDocument parsing (php)
Hello, I am parsing an xml file from an API which I have converted into a DOMDocument in php. This is mostly fine but one problem I have is when I do this:
$feeditem->getElemen …
0
votes
2answers
21 views
php DomDocument, require first item only
Hello I have use DOMDocs in the past but I am stuck how to do this.
$xmldoc = new DOMDocument();
$xmldoc->load('http://example.com');
$feeditem = $xmldoc->getElementsByTagN …
0
votes
2answers
49 views
Php DOMDocument getting attibute of tag
Hello I have an api response in xml format with a series of items such as this:
<item>
<title>blah balh</title>
<pubDate>Tue, 20 Oct 2009 </pubDate>
…
0
votes
2answers
29 views
Ignore the first XML tag in DOMDocument?
I write $xml = new DOMDocument(); and it automatically creates <?xml version="1.0"?>. I need to NOT create it. How do i do that?
One solution is to search the first ">" and …
0
votes
1answer
170 views
PHP DOMDocument with åäö (UTF-8)
Hi!
I got a HTML/PHP5 page with a form, then when it gets posted, it creates a XML file with the form input as data.
But all åäö looks like if I had used utf8_encode() on them. I …
0
votes
1answer
27 views
Walking through html searching for first level blocks
In addition to my other question about the analyzing of html, and searching for <p> and <ul>/<ol> tags this question.
$in = '<p>Bit\'s of text</p>< …
0
votes
1answer
34 views
Same elements from multiple files DomDocument loadHTMLFile PHP
It seems that when I have multiple files within the '/var/www/cal/attach/' directory, it only extracts the elements from the first file over and over again. Do I need to clear out …
0
votes
1answer
67 views
Is there a way to get all of a DOMElement’s attributes?
I'm reading some XML with PHP and currently using the DOMDocument class to do so. I need a way to grab the names and values of a tag's (instance of DOMElement) attributes, without …
0
votes
4answers
532 views
Indentation with DOMDocument in PHP
I'm using DOMDocument to generate a new XML file and I would like for the output of the file to be indented nicely so that it's easy to follow for a human reader.
For example, whe …
0
votes
1answer
112 views
DOMDocument & XPath - HTML Tag of each Node
Given the following PHP code using DOMDocument:
$inputs = $xpath->query('//input | //select | //textarea', $form);
if ($inputs->length > 0)
{
for ($j = 0; $j < $i …
3
votes
5answers
601 views
PHP XML Parsing
Which is the best way to parse an XML file in PHP ?
First
Using the DOM object
//code
$dom = new DOMDocument();
$dom->load("xml.xml");
$root = $dom->getElementsByTagName( …
