今晚我读了很多文档,不明白为什么这不起作用。很明显我错过了什么。
$newstr = "18,19";
$defid = 1;
$table = "wp_tablename";
$data = "array( \'somecol\' => \'".$newstr."\' )";
$where = "array( \'id\' => ".$defid." )";
if ($wpdb->update( $table, $data, $where) === FALSE)
{
echo "failure";
}
else
{
echo "success";
}
每次都是假的。有什么线索吗?我错过了什么?我确实尝试在何处使用format\\u,但也没有成功。