object = phpy.Object("mysqli", arg1, arg2, arg3, ...)
value = object.get("name")
object.set("name", value)
return_value = object.call("name", arg1, arg2, arg3, ...)
Only object methods can be called using this syntax. For class static methods, please use the
phpy.call()
function.