Skip to content

Instantly share code, notes, and snippets.

@infinitypaul
Created December 7, 2019 14:25
Show Gist options
  • Save infinitypaul/f74cee6ed56c27200fca598729b80a51 to your computer and use it in GitHub Desktop.
Save infinitypaul/f74cee6ed56c27200fca598729b80a51 to your computer and use it in GitHub Desktop.
toString.php
<?php
class MyName
{
public function __toString()
{
return 'I Am A Genius';
}
}
echo new MyName();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment