Skip to content

Instantly share code, notes, and snippets.

@FinchPowers
Last active January 1, 2016 06:19
Show Gist options
  • Save FinchPowers/8104551 to your computer and use it in GitHub Desktop.
Save FinchPowers/8104551 to your computer and use it in GitHub Desktop.
PHP RAII style
<?php
class Toto{
function __construct(){
print "CONSTRUCT!\n";
}
function __destruct(){
echo "DESTROY\n";
}
}
function coco(){
$t = new Toto();
echo "Toco will go out of scope\n";
}
coco();
echo "Program done\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment