Skip to content

Instantly share code, notes, and snippets.

@themasch
Created September 18, 2012 16:28
Show Gist options
  • Save themasch/3744108 to your computer and use it in GitHub Desktop.
Save themasch/3744108 to your computer and use it in GitHub Desktop.
it workz!
<?php
class CoolStringClass
{
public function __construct($content)
{
$this->contents = $content;
}
public function __toString()
{
return $this->contents;
}
}
$str = new CoolStringClass("TeSt");
var_dump(strtolower($str) === 'test');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment