Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
This paste will be private.
class ClassName { # internal variables var $test; # Constructor function __construct ( $t='aas' ) { $this->$test = $t; } ### function Output () { echo $this->$test; } } ### $s = new ClassName; $s->Output;
From the Design Piracy series on my blog: