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.

link|improve this question
Hard to tell without seeing any code. Can you provide a link to the classes or show us the relevant portions? Your best bet would be to setup a small test script that reproduces the error and step through it with XDebug or Zend Debugger to pinpoint where it goes wrong. – Gordon Jan 17 '11 at 10:35
I second Gordon on seeing the code, also I'm curious why you store objects that way and not extend DOMDocument for your purposes. It is designed to store DOMElements in the same way you'd want them to be in an SVG document. – Dennis Kreminsky Jan 17 '11 at 10:49
I use an extended DOMDocument but each element in the document has it relative position to it's parent node stored in it's properties. To calculate the absolute position of an element I take the sum of the positions of all parent nodes. I could store the positions of all elements in the extended DOMDocument but it makes more sense to me if each element would store its own position. I just noticed I made a mistake in my problem description which I will change in a minute: it's not the element I retrieve from the array that changes but it's this elements parent node. – Paul Jan 17 '11 at 11:06
Another comment: the code I use is very complex and references a lot of other code that is irrelevant to the case but I'll try to write a simplified version that describes the problem. – Paul Jan 17 '11 at 11:23
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.