Created
February 17, 2010 02:15
-
-
Save ukstudio/306209 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Square { | |
| public $height; | |
| public $width; | |
| } | |
| $square = new Square(); | |
| $square->height = 100; | |
| $square->width = 80; // 正方形なのに縦と横が同じじゃない |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment