-
-
Save devfabriciobr/755078d8147915b1aa8e3f7c94a29552 to your computer and use it in GitHub Desktop.
PEGAR DADOS SEPARADOS DE UM TEXTO ( explode )
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $nome_completo = 'FABRICIO ALMEIDA'; | |
| $array = explode(' ', $nome); | |
| # RETORNO DO explode | |
| Array | |
| ( | |
| [0] => FABRICIO | |
| [1] => ALMEIDA | |
| ) | |
| $nnome = $array[0]; # FABRICIO | |
| $sobrenome = $array[1]; # ALMEIDA | |
| # OUTRO EXEMPLO: | |
| $frutas = 'MAÇA, UVA, ABACAXI'; | |
| $array = explode(',', $frutas); | |
| $maca = $array[0]; # MAÇA |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment