|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2005-02-06 15:29 UTC] chvol at aol dot com
Description: ------------ This documentation doesn't explain the PHP language. It gives low level constructs, and various categories where certain things can be found. However, it doesn't actually simply define the language itself: a line consists of statements separated by ";". Each statement consists of one of the following: MISSING LIST HERE If you poke around you can find reference to the FOR command in one place, and ECHO somewhere else in there. But the user isn't supposed to have to look through the entire manual to find one item: a certain command. I have been trying to find one particular command and have been searching through the different sections. Why don't you just list them out? You know, describe the PHP language commands? PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 11:00:01 2025 UTC |
The section on Instruction Separation is missing a definition of the general format of an Instruction. From my limited experience, it can be at least any of the following: 1. An expression that is merely evaluated. Side-effects such as output (HTML) and database (SQL) changes are the result. 2. A command plus one argument. (Refer to the types of commands and the list) 3. { and } 4. What else is there that I don't know? I'm not sure why the responses from the very beginning have included questions as to what I mean, but at the same time declared my point to be "Bogus" without the benefit of knowledge of my answers first.