D 메소드 자동 완성

2163 단어 방법
컨트롤러
public function insert(){

$Wztj = D("Wztj");if($vo=$Wztj->create()){ 

if($Wztj->add()){

$this->success(' ');

}else{

$this->error(' ');

}

}else{

$this->error($Wztj->getError());

}

}

모듈
<?php

class WztjModel extends Model{// xp_cate



protected $_auto = array ( 

        array('wz','getwz',3,'callback'), //  name getName 

    );

 function getwz(){

$wz=($_POST['wz']);

return $wz;

 }

 

 

    

    





}

?>

좋은 웹페이지 즐겨찾기