Skip to content

Instantly share code, notes, and snippets.

@design-innovations
Last active September 15, 2020 01:01
Show Gist options
  • Save design-innovations/6307bd860b0db8ebb3278fede9ee35e4 to your computer and use it in GitHub Desktop.
Save design-innovations/6307bd860b0db8ebb3278fede9ee35e4 to your computer and use it in GitHub Desktop.
PHP - Closures
<?php
$touristPrices = array_map(function($price) {
return $price*2;
}, $localPrices);
// or
$factor = 2;
$touristPrices = array_map(function($price) use($factor) {
return $price*$factor;
}, $localPrices);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment