Skip to content

Instantly share code, notes, and snippets.

@gorkamu
Created December 25, 2016 11:57
Show Gist options
  • Save gorkamu/c2ac43faec6e340f49f8492e865f7167 to your computer and use it in GitHub Desktop.
Save gorkamu/c2ac43faec6e340f49f8492e865f7167 to your computer and use it in GitHub Desktop.
Ejemplo de destructor mediante método mágico
<?php
class MyDestructableClass {
function __construct() {
print "En el constructor\n";
$this->name = "MyDestructableClass";
}
function __destruct() {
print "Destruyendo " . $this->name . "\n";
}
}
$obj = new MyDestructableClass();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment