The DECLARE construct in PHP (declare)

The DECLARE construct is a crucial part of the structure control in PHP. The DECLARE construct is used to set the execution directives of script codes; directives set the...

The RETURN statement in PHP (return)

To return the flow control to the calling mode, a RETURN statement is used. Buy applying the RETURN statement the execution of the program resumes from where it w...

The REQUIRE and REQUIRE_ONCE statements in PHP (require, require_once)

To include a PHP file into an opened PHP script we may use one of following two possible groups of statements: The require and

The INCLUDE and INCLUDE_ONCE statements in PHP (include, include_once)

To include a PHP file into an opened PHP script we may use one of following two possible groups of statements: The 

The GOTO statement in PHP (goto)

There is another, not so often used, statement in PHP, that is a part of structure controlling stataments; that is the