Posted by Jim Michaels on 11/03/68 11:41
"Jim Michaels" <NOSPAMFORjmichae3@yahoo.com> wrote in message
news:L8udndm2vp5Xm5fZRVn-jg@comcast.com...
> [19] => Array
> (
> [tag] => UML:CLASS
> [type] => open
> [level] => 5
> [attributes] => Array
> (
> [XMI.ID] => .:00000000000008EC
> [NAME] => quiz_batteries
> [VISIBILITY] => public
> [ISSPECIFICATION] => false
> [ISROOT] => false
> [ISLEAF] => false
> [ISABSTRACT] => false
> [ISACTIVE] => false
> )
>
> [value] =>
>
> )
>
> $xmlarray[$x]['tag']['attributes']['NAME']
>
> gives me
>
> C:\prj\quiz>php argouml2sql.php quiz.xmi
> PHP Fatal error: Cannot use string offset as an array in
> C:\prj\quiz\argouml2sql.php on line 32
>
> I also get the same error on
> $id=$xmlarray[$x]['tag']['attributes']['XMI.ID'];
>
>
> what am I doing wrong?
>
figured it out.
$xmlarray[$x]['attributes']['NAME']
$id=$xmlarray[$x]['attributes']['XMI.ID'];
Navigation:
[Reply to this message]
|