상속: extends phprs\ezsql\rules\basic\BasicRule
예제 #1
0
파일: Sql.php 프로젝트: caoym/phprs-restful
 /**
  * replaceInto('table') => "REPLACE INTO table"
  * @param string $table
  * @return \phprs\ezsql\rules\replace\ValuesRule
  */
 public static function replaceInto($table)
 {
     $obj = new ReplaceIntoRule(new SqlConetxt());
     return $obj->replaceInto($table);
 }