0
我嘗試了常規的PHP未設置,但沒有成功。一切看起來都在這裏,但它仍然在陣列中wordpress unset user_meta數組值
$profileID = $_POST['profileID'];
$userID = $_POST['userID'];
$reChkMetaValue = get_user_meta($userID,'friends',true);
foreach($reChkMetaValue as $key => $value) {
if(($key = array_search($profileID, $reChkMetaValue)) !== false);
unset($reChkMetaValue[$key]);
}
我試過了,請參閱上面的修改代碼。由於某些原因數組項仍然存在,但在錯誤日誌中不返回錯誤。 –
你想要刪除什麼?爲什麼你需要從數組中取消設置一些東西?爲什麼不只是不顯示數據.... – Joe