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
; Example drush make file using the github download type. | |
api = 2 | |
core = 7 | |
projects[] = drupal | |
; Module | |
projects[bean_boxes][type] = "module" | |
projects[bean_boxes][download][type] = "github" |
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 | |
$amount = 12.50; | |
print (int) $amount * 100; # => 1200 # My implementation. I was wrong. | |
print (int) ($amount * 100); # => 1250 # After bugfix. PHP first casts, then multiplies. |