Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking for the PHP equivalent of the Javascript function getElementById() and innerHTML. Basically, how can I edit the content of certain ID's in the document? Thanks.

share|improve this question
1  
you can only edit the content with PHP before it is sent to client. Not really sure what you're trying to achieve here? – ianbarker Jun 28 '11 at 14:24
if you're building the DOM using php, you can do so. perform a google search for "dom php getelementbyid" – Wadih M. Jun 28 '11 at 14:25
If you're using DOMDocument php.net/manual/en/domdocument.getelementbyid.php – mhitza Jun 28 '11 at 14:26
If the OP could articulate why he is trying to do this, we could give a helpful answer :-) – John McLaughlin Jun 28 '11 at 20:31

2 Answers

up vote 1 down vote accepted

You can't. PHP is sever side and can't operate on the document after it has been rendered.

share|improve this answer
Unless you use PHP to generate JavaScript. :) – Alex Howansky Jun 28 '11 at 14:25
The OP didn't mention he wants it after. – takeshin Jun 28 '11 at 14:27
That is valid. I made a large assumption based on the comparison to Jscript. If he says he wants to parse the HTML file I'll change my answer. – ashurexm Jun 28 '11 at 14:28
I don't really know what you mean, but what I wanted to do is dinamically change a website without leaving it. – LonelyWebCrawler Jun 29 '11 at 4:21

getElementById() is available via DomDocument.

innerHTML() is not, but it's possible to simulate it:

$innerHTML = '';
foreach($node->childNodes as $child) {
  $innerHTML .= $node->ownerDocument->saveXML($child);
}

If your PHP version supports it, you can make use of saveHTML instead of saveXML.

share|improve this answer
1  
Are you sure you 're not fueling the OP's misconception about what these functions might actually do in PHP? – Jon Jun 28 '11 at 14:26
@Jon: If you want to express that the question can benefit from clarification, I'm with you. But even if so, it would remain to clarify if this can not be done within PHP, e.g. via output buffers. – hakre Jun 28 '11 at 14:30
1  
Did the trick for me. It's unfortunate that this has to be so hard.. – Rijk Mar 22 at 13:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.