0
識別子user_idの名前はどのように変更できますか?上記の の変形は機能しません。 またはオプションsqlがあります。識別子の名前を変更するuser_id
id|user_id|name
----------------------
15| 2 |testreg
----------------------
18| 1 |Cheburashka
----------------------
6 | 2 |testreg
----------------------
19| 1 |Cheburashka
----------------------
20| 1 |Cheburashka
public function eBL() {
$link_ebl = $this->config->address."?view=editprofile";
$user_id = $this->data["id"];
$name = $this->data["login"];
if ($name == "") return $this->returnMessage("EMPTY_FIELD", $link_ebl);
$result = $this->article->setName($user_id, $name);
if ($result) return $this->returnPageMessage("SUCCESS_LOGIN", $this->config->address."?view=message");
else return $this->unknownError($link_ebl);
}
public function setName($user_id, $name){
return $this->setFieldOnID("user_id", "name", $name);
}
ない、あなたが求めているのかわから?スキーマを変更したいのですか、使用しているフレームワーク内にあるマッピング機能ですか? – RiggsFolly
user_idидентификатора –
どのフレームワークを使用していますか? –