Skip to content

Instantly share code, notes, and snippets.

@ukstudio
Created February 17, 2010 02:15
Show Gist options
  • Select an option

  • Save ukstudio/306209 to your computer and use it in GitHub Desktop.

Select an option

Save ukstudio/306209 to your computer and use it in GitHub Desktop.
<?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