Skip to content

Instantly share code, notes, and snippets.

@takedajs
Created May 5, 2017 07:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takedajs/944f3625a9c017103bf493cfdc3e33f9 to your computer and use it in GitHub Desktop.
Save takedajs/944f3625a9c017103bf493cfdc3e33f9 to your computer and use it in GitHub Desktop.
<?php
class Test {
private $test1 = 1;
public function index()
{
echo $this->test1;
$test2 = 2;
echo $test2;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment