Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 14, 2019 23:02
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/28f4b862b7042aca2de2842c1a8ff855 to your computer and use it in GitHub Desktop.
Save parzibyte/28f4b862b7042aca2de2842c1a8ff855 to your computer and use it in GitHub Desktop.
<?php
// Funciones "ficticias" para demostrar
function obtenerNombre(){
return "parzibyte";
}
function obtenerEdad(){
return 21;
}
echo 'Hola "' . obtenerNombre() . '" tu edad es "' . obtenerEdad() . '"';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment