Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 19, 2020 02:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/3020ce6992bace7667f1c71af7341fc4 to your computer and use it in GitHub Desktop.
Save parzibyte/3020ce6992bace7667f1c71af7341fc4 to your computer and use it in GitHub Desktop.
<?php
function obtenerNombreEdadYRespuesta(){
$nombre = "Luis";
$edad = 23;
$leGustaProgramar = "Sí";
# Regresamos como un arreglo
return [$nombre, $edad, $leGustaProgramar];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment