I'm currently working on a class to generate a flow chart using SVG. For this I use a number of classes that replace the standard PHP DOM classes.
For the elements in the chart I use a class (DiagramElement) that extends another class that I wrote myself to describe items in an SVG document (SVGElement). The SVGElement class in it's turn extends the standard PHP DOMElement. To prevent parts of the diagram from being drawn several times, I add all the elements already present in the chart to an array in the document class. Then when I would add a new element I check first if it's already there and in that case I get this element from the array. There is, however, the following problem: when I retrieve a DiagramElement from the array its parent node has changed from DiagramElement to SVGElement and lost all its properties that are specific for the DiagramElement. The SVGElement->parentNode and all parent elements however remain unchanged.
Can anyone tell me if I'm wrong in my design or maybe it's a bug in PHP, I've already tested the code with different versions of PHP 5.3, but got the same result in all cases.
Thanks in advance, Paul.