I am trying to learn how to take a large XML file, edit all references to embedded images, and then render it to the browser. I have found some tutorials that have helped me with parts of this, but to get all the pieces I have turned to online documentation. That's where I am having problems.
For example, at one site there is reference to DomDocument->get_elements_by_tagname() (with underscores), yet at another site the reference is to DOMDocument->getElementsByTagName() (without underscores).
Can anyone tell me what is going on here? Where is the definitive manual that will help me to know what methods are at my disposal?
In my code the latter method (without the underscores) is the one that works. Does that mean I need to stay clear of all the methods mentioned on the php.net site? But I thought they were the standard?
Help! 😕