during the last days I changed a lot in php5's ext/mysqli. Now I have some "minor" problems:
How to document oo-syntax? - objects - methods - properties
For all methods and properties there exists a procedural function too, so a function entry should be also method/property and function. E.g.
$mysql->affected_rows (Property) mysqli_affected_rows (Function)
or $mysql->query (method)
mysqli_query (Function)
Does anybody have similar/same problems and a solution how to document it?
The DOMXML extension has this kind of documentation.
Goba
