Skip to content

Instantly share code, notes, and snippets.

@gorkamu
Created December 10, 2016 16:51
Show Gist options
  • Select an option

  • Save gorkamu/c952a7a86a51e8123531b1844513eec3 to your computer and use it in GitHub Desktop.

Select an option

Save gorkamu/c952a7a86a51e8123531b1844513eec3 to your computer and use it in GitHub Desktop.
Ejemplo de enlace no estático en tiempo de ejecución
<?php
class Taza
{
public static function getName()
{
echo 'Soy una taza';
}
public static function queSoy()
{
self::getName();
}
}
class Tetera extends Taza
{
public static function getName()
{
echo 'Soy una tetera';
}
}
Tetera::queSoy(); // 'Soy una taza'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment