Skip to content

Instantly share code, notes, and snippets.

@niclasleonbock
Last active August 29, 2015 14:07
Show Gist options
  • Save niclasleonbock/137650c01ffda81e38de to your computer and use it in GitHub Desktop.
Save niclasleonbock/137650c01ffda81e38de to your computer and use it in GitHub Desktop.
Na na na na na na na na na na na na na na na na Batman!
<?php
class Batman
{
public function __construct($i = 16)
{
echo ucfirst(str_repeat('na ', $i));
}
public function __destruct()
{
echo 'Batman!';
}
}
<?php
new Batman();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment