How to parse/use XSD document in SOAP world using PHP or Ruby?
Archive for the ‘PHP’ Category
XSD
Posted in PHP, Ruby, Software Development on July 30, 2007 | No Comments »
PHP: object_to_array()
Posted in PHP on March 9, 2006 | 1 Comment »
Few days ago I was submit this comment to PHP Documentation.
Hi all, I just wrote a function which dumps all the object propreties and its associations recursively into an array. Here it is..
<?php
function object_to_array($obj) {
$_arr = is_object($obj) ? get_object_vars($obj) : $obj;
[...]