> > Just like our home page is just boring release announcements. This > should have much more interesting stuff such as how, and when, to use > the great new features that we have been adding in the last decade. >
I would add that there are lots of features where the PHP manual says how the functions work, but not how all the parts fit together. There really should be documentation on "why do I need/want this" and "what can I do with it"? Reflection: When and why do we want to use this? What useful problem does it solve and where is a working example? Attributes: What problem does this solve and why would a developer need this? Fibers: When and how do we use this? And what is the exact list of "fiberable" things? ie. Can we fiber a PDO SQL request? And then there's stuff like SSH2, that's just a bunch of function references, and there is no official, *complete* documentation on how to do the entire process of connecting to a remote server over SSH, issuing commands, checking the response of those commands (1 or 0 return value), and so on. I think some more *tutorial* type documentation would be great from PHP. How to put all the parts together for a complete solution to some real world useful problem.