projet_php/app/entities/mother_entity.php
2026-01-14 20:52:19 +01:00

22 lines
No EOL
485 B
PHP

<?php
/**
* Classe d'un Mere de tout objet
* @author Yass
*/
class Entity{
protected string $_prefix = '';
public function hydrate(array $arrData){
foreach($arrData as $key=>$value){
$strMethodName = "set".ucfirst(str_replace($this->_prefix,'',$key));
if (method_exists($this,$strMethodName)){
$this->$strMethodName($value);
}
}
}
}