Errors in documentation
Kyle Wilcox <[email protected]> Tue, 30 Jan 2007 15:31:42 -0500
| Newsgroups | gmane.comp.php.xml-rpc |
|---|---|
| Message-ID | <[email protected]> |
Section 1.2 :
> // recursive struct
> $myStruct = new xmlrpcval(
> array(
> "name" => new xmlrpcval("Tom", "string"),
> "age" => new xmlrpcval(34, "int"),
> "address" => new xmlrpcval(
> array(
> "street" => new xmlprcval("Fifht Ave", "string"),
> "city" => new xmlrpcval("NY", "string")
> ),
> "struct")
> ),
> "struct");
"street" => new xmlprcval("Fifht Ave", "string"),
should be:
"street" => new xmlrpcval("Fifth Ave", "string"),
--
Kyle Wilcox
NOAA Chesapeake Bay Office
410 Severn Avenue
Suite 107A
Annapolis, MD 21403
office: (410) 295-3151
[email protected]