can someone please tell me where to look on php.net to gain a better unerstanding of how to read their function descriptions?
for example
bool isset ( mixed var [, mixed var [, ...]] )
when the definition is laid out like so, what is the proper way of reading this?
this is how i would read the above:
{ use some boolean here } then the function isset with the arguments (which can and should be a {mixed variable} [, another {mixed variable} [, something else here]])
i'm not sure if my confusion is sufficiently illustrated there, but maybe you can get the idea of why it seems kinda of like a foreign language to me. (first of all, i'm not sure even what is a "mixed variable")
is there some "key" to go by?
if YOU didn't know how to read this, what would be your steps to understanding what is written here?