Skip to content

Instantly share code, notes, and snippets.

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