Skip to content

Instantly share code, notes, and snippets.

@gorkamu
Created December 10, 2016 17:04
Show Gist options
  • Save gorkamu/f56a8d82a5ac4515eedc3978ae631d77 to your computer and use it in GitHub Desktop.
Save gorkamu/f56a8d82a5ac4515eedc3978ae631d77 to your computer and use it in GitHub Desktop.
Ejemplo de enlace estático en tiempo de ejecución
<?php
class Pantoja
{
protected static $nombre = 'Isabel Pantoja';
public static function comoMeLlamo()
{
return static::$nombre;
}
}
class Paquirrin extends Pantoja
{
protected static $nombre = 'Paquirrin';
}
echo Paquirrin::comoMeLLamo(); // 'Paquirrin'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment