これは、OO PHP への私の最初のアプローチです。Person クラスを作成しました。データベースにクエリを実行するか、POST 値を使用して Person オブジェクトを作成する必要があります。次に、データを DB に保存する必要があります。
これは私のコードです。正しいアプローチかどうかはわかりません。アドバイスが必要です。
class Persona {
protected $id=NULL;
protected $nome;
protected $cognome;
protected $cf=NULL;
protected $indirizzo=NULL;
protected $civico=NULL;
protected $citta=NULL;
protected $cap=NULL;
protected $provincia=NULL;
protected $nazione=NULL;
protected $telefono=NULL;
protected $fax=NULL;
protected $cellulare=NULL;
protected $email;
protected $data_registrazione;
protected $tipo_registrazione;
public function createPersona($postData=NULL,$id=NULL,$email=NULL)
{
global $_CONFIG;
if(is_array($postData) && isset($postData['nome']) && isset($postData['cognome']) && isset($postData['email']) && isset($postData['tipo_registrazione']))
{
$record=$postData;
}elseif(isset($id)){
$result=mysql_query("SELECT * FROM ".$_CONFIG['tbl_persone']." WHERE id='".escape_string($id)."'");
if(mysql_num_rows($result)!=1) return false;
$record = mysql_fetch_assoc($result);
}elseif(isset($email)){
$result=mysql_query("SELECT * FROM ".$_CONFIG['tbl_persone']." WHERE email='".strtolower(escape_string($email))."'");
if(mysql_num_rows($result)!=1) return false;
$record = mysql_fetch_assoc($result);
}else{
return false;
}
if(isset($record['cf'])) $record['cf']=strtoupper($record['cf']);
if(isset($record['cap'])) $record['cap']=strtoupper($record['cap']);
if(!isset($record['nazione']) && isset($record['prefisso'])) $record['nazione']=$record['prefisso'];
$record['email']=strtolower($record['email']);
if(!isset($record['data_registrazione'])) $record['data_registrazione']=date('Y-m-d H:i:s');
$vars=get_object_vars($this);
foreach($vars as $key=>$value)
{
if(isset($record[$key])){$this->$key=$record[$key];}
}
if(!$this->validatePersona())return false;
return true;
}
protected function validatePersona()
{
if(isset($this->id) && !validateID($this->id)) return false;
if(isset($this->cf) && !validateCF($this->cf)) return false;
if(isset($this->cap) && !validateCAP($this->cap)) return false;
if(isset($this->email) && !validateEmail($this->email)) return false;
return true;
}
public function savePersona()
{
global $_CONFIG;
$vars=get_object_vars($this);
foreach($vars as $key=>$value)
{
if($key!='id')
{
if(isset($this->$key))
{
$columns.=$key.",";
$values.="'".escape_string($this->$key)."',";
}
}
}
if(!mysql_query("INSERT INTO ".$_CONFIG['tbl_persone']." (".substr($columns,0,-1).") VALUES (".substr($values,0,-1).")"))
{
return false;
}else{
return true;
}
}
}
$p=new Persona();
if(!$p->createPersona($_POST)){
echo 'Si è verificato un errore.<br />Riprova più tardi. [0]';
exit;
}
if($p->createPersona(NULL,NULL,$_POST['email'])){
echo 'Indirizzo email già registrato.';
exit;
}
if(!$p->savePersona()){
echo 'Si è verificato un errore.<br />Riprova più tardi. [2]';
exit;
}
2 番目のステップは、DB から人物データを使用して動的 HTML テーブルを作成することです。手続き型言語で DB を取得して配列を作成し、次に foreach コンストラクトを使用してテーブルを出力しますが、OO 言語での方法がわかりません.
皆さん、ありがとうございました
フランチェスコ