Last active
April 21, 2017 15:29
-
-
Save geekcom/8265773943cc517f50f267faa4032cb9 to your computer and use it in GitHub Desktop.
This file contains 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 | |
/* | |
* $a é igual a 9 agora e $b foi definido como 4. | |
*/ | |
$a = ($b = 4) + 5; | |
/* | |
* atribuição da chave 'nome' ao valor 'PHP7.1', | |
* exemplo de array associativo | |
*/ | |
$array = ['nome' => 'PHP7.1']; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment