Latest Tutorials

The FOR statement in PHP (for)

The for statement is a maintstream loop controlling statement across most of programming languages. When number of repetition of loop is known, the for loop is the be...

The FOR-EACH statement in PHP (foreach)

The foreach statement, although it sounds like an extension of the for statemen...

The BREAK and CONTINUE statements in PHP (break ,continue)

The break and continue statements are frequently used in combination with conditional statements

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

The string functions for string conversions in PHP (ucfirst()...)

PHP uses number of integrated functions for conversion of strings. The list of string converting functions is shown below. The string converting functions in PHP:

The string functions for number format conversions in PHP (number_format()...)

PHP uses number of integrated functions for conversion of number formats. The list of number converting functions is shown below. The number format converting functions...