Back to Browse

Learn PHP Tutorial in Hindi 18 foreach as function

825 views
Oct 9, 2015
6:15

This video is made for learning about foreach as function in PHP in Hindi. The foreach construct provides an easy way to iterate over arrays. foreach works only on arrays and objects, and will issue an error when you try to use it on a variable with a different data type or an uninitialized variable. There are two syntaxes: foreach (array_expression as $value) statement The first form loops over the array given by array_expression. On each iteration, the value of the current element is assigned to $value and the internal array pointer is advanced by one (so on the next iteration, you'll be looking at the next element).

Download

0 formats

No download links available.

Learn PHP Tutorial in Hindi 18 foreach as function | NatokHD