Leia Mais
PHP - Slicing Strings
Slicing
You can return a range of characters by using the substr() function.
Specify...
PHP Continue
The continue statement can be used to jump out of the current iteration of a loop, and...
PHP Magic Constants
PHP Predefined Constants
PHP has nine predefined constants that change value depending on where...
PHP - Escape Characters
Escape Character
To insert characters that are illegal in a string, use an escape character.
An...
PHP foreach Loop
The foreach loop - Loops through a block of code for each element in an array or each...