Skip to content

Instantly share code, notes, and snippets.

@nikita2206
Created February 19, 2013 18:42
Show Gist options
  • Save nikita2206/4988665 to your computer and use it in GitHub Desktop.
Save nikita2206/4988665 to your computer and use it in GitHub Desktop.
<?php
class Foo
{
public bar()
{
echo "bar\n";
}
public function fooBar()
{
echo "fooBar\n";
}
}
$i = new Foo;
$i->bar(); // outputs "bar\n"
$i->fooBar(); // outputs "fooBar\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment