Skip to content

Instantly share code, notes, and snippets.

@bkudria
Created August 13, 2008 20:18
Show Gist options
  • Save bkudria/5299 to your computer and use it in GitHub Desktop.
Save bkudria/5299 to your computer and use it in GitHub Desktop.
<?php
// Guess the invalid PHP!
class Printer {
function __construct($num) {
$this->num = $num;
}
function printing($num = $this->num)
{
return "printed: $num";
}
}
$a = new Printer(3);
echo $a->printing();
echo $a->printing(5);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment