Skip to content

Instantly share code, notes, and snippets.

@gorkamu
Created December 4, 2016 17:20
Show Gist options
  • Save gorkamu/42e54f569b26e5639e437e08c94e0d53 to your computer and use it in GitHub Desktop.
Save gorkamu/42e54f569b26e5639e437e08c94e0d53 to your computer and use it in GitHub Desktop.
Ejemplo de herencia de variables en las funciones anónimas
<?php
$mensaje = 'hola';
// Sin "use"
$ejemplo = function () {
var_dump($mensaje);
};
$ejemplo(); // Notice: Undefined variable: message in /example.php on line 7
// Heredar $mensaje
$ejemplo = function () use ($mensaje) {
var_dump($mensaje);
};
$ejemplo(); // hola
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment