示例#1
0
 public function parseBiography($ID)
 {
     // Get the source
     $this->getSource($this->URL['character']['profile'] . $ID);
     // Create a new character object
     $Character = new Character();
     // Get biography
     $Character->setBiography($this->findRange('txt_selfintroduction', 5));
     // Return biography
     return $Character->getBiography();
 }