如何在将图像保存到文件夹后立即收到通知?

How to get notification immediately after saving the image in folder?

我正在做一个应用程序,当图像被保存到 server.Is 中的文件夹时必须收到通知(本地)可以在收到通知后启动 运行 脚本吗?有人可以吗?帮助我吗?

提前致谢。

if(move_uploaded_file($temporary, $upload_location)) 
{
   echo "<span style='font-size:0px'>image_saved</span>";
}

如果您使用的是 jquery,那么您可以从 php 获取响应并将其显示在您的应用程序上。

if(indexOf('image_saved') != -1){
    $('#messageDisplayer').html("The image has been saved successfully");
}
else{
    //do something
}