Skip to content

Instantly share code, notes, and snippets.

@mpmont
Created October 6, 2012 21:55
Show Gist options
  • Save mpmont/3846298 to your computer and use it in GitHub Desktop.
Save mpmont/3846298 to your computer and use it in GitHub Desktop.
__toString() example
<?php
class TestClass
{
public $foo;
public function __construct($foo)
{
$this->foo = $foo;
}
public function __toString()
{
return $this->foo;
}
}
$class = new TestClass('Hello');
echo $class;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment