Feed on
Posts
Comments

Archive for the ‘PHP’ Category

XSD

How to parse/use XSD document in SOAP world using PHP or Ruby?

Read Full Post »

PHP: object_to_array()

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;
[...]

Read Full Post »