Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 php 中使用了 MsSQL 远程连接,当我从数据库中检索数据时,它运行良好,但是当我更新数据时,更新查询返回 1,但数据可以在数据库中更新。
$array['Active'] ='1';
$array['ExprireDate'] ='2019-08-01';
$result = $db->update('Memeber',$array,'Memeber=1');
你能告诉我该怎么做吗?
根据wordpress 文档,更新函数的条件是一个数组。
所以,让你试试:
$result = $db->update('Memeber',$array, ['Memeber' =>1]);