Skip to content

Instantly share code, notes, and snippets.

@platoosom
Created September 29, 2017 09:34
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 platoosom/e504b8422c8fcd3d5a404d80f01bf2f8 to your computer and use it in GitHub Desktop.
Save platoosom/e504b8422c8fcd3d5a404d80f01bf2f8 to your computer and use it in GitHub Desktop.
<?php
class People {
public $idcard;
public $name;
public function __construct() {
$this->idcard = '';
$this->name = '';
}
public function setName($name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment