Last active
August 29, 2015 14:07
-
-
Save flavio-araujo/98a954af451d69d6daf4 to your computer and use it in GitHub Desktop.
Código PHP. Testando a funcionalidade do Gist de inserir descrição e dando nome ao arquivo
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 | |
$arr = array(1, 2, 3, 4); | |
foreach ($arr as &$value) { | |
$value = $value * 2; | |
} | |
unset($value); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment