PHP 在 JS 之前首先执行,但是如果数据不为空,是否有一种简单的方法可以输出确认对话框(如 Javascript 确认),就像在这个条件 PHP 语句中一样:
<?php
if (!empty($data)) {
//data is not empty
//Ideally I want to show a confirmation dialog in this part to the user
//to confirm if the user wants to overwrite the existing data
//If the user confirms
//Overwrite the existing data here
} else {
//data is empty,proceed to other task
//don't show any dialog
}
我不想向用户添加另一个表单,只是一个简单的确认对话框,如 JS 确认。或者是否有一个PHP替换功能?谢谢。