Skip to content

Instantly share code, notes, and snippets.

@tao-s
Created March 10, 2015 11:38
Show Gist options
  • Save tao-s/0b9220a80b04b91bb6eb to your computer and use it in GitHub Desktop.
Save tao-s/0b9220a80b04b91bb6eb to your computer and use it in GitHub Desktop.
これが動くんか...
<?php
class ほげ{
var $プロパティ;
function ほげ(){
$this->プロパティ = "ほげ";
}
function はげ(){
echo $this->プロパティ;
}
}
$ほげ = new ほげ();
$ほげ->はげ();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment