为 phonegap 应用制作 upload.php 脚本

making a upload.php script for phonegap app

我正在为我的 phonegap / ionic 应用程序添加图片上传功能。 到目前为止,我有 javascript 代码部分和 运行 但现在我需要使用 php 上传脚本将图像传递到服务器端。 我希望有人可以帮助我创建一个 php 上传脚本,该脚本适用于我下面的代码,我不熟悉 php。

我当前的 phonegap javascript 代码想要将照片传递给 upload.php 脚本。

</script>        
    function selectPhoto() {

        // Retrieve image file location from specified source
        navigator.camera.getPicture(uploadPhoto,
        function(message) { alert('get picture failed'); },
        { quality: 50, 
        destinationType: navigator.camera.DestinationType.FILE_URI,
        sourceType: navigator.camera.PictureSourceType.PHOTOLIBRARY, }
        );

    }

    function uploadPhoto(imageURI) {
        var options = new FileUploadOptions();
        options.fileKey="file";
        options.fileName=imageURI.substr(imageURI.lastIndexOf('/')+1);
        options.mimeType="image/jpeg";

        var params = new Object();
        params.value1 = "test";
        params.value2 = "param";

        options.params = params;

        var ft = new FileTransfer();
        ft.upload(imageURI, "http://some.server.com/upload.php", win, fail, options);
    }

    function win(r) {
        console.log("Code = " + r.responseCode);
        console.log("Response = " + r.response);
        console.log("Sent = " + r.bytesSent);
    }

    function fail(error) {
        alert("An error has occurred: Code = " = error.code);
        console.log("upload error source " + error.source);
        console.log("upload error target " + error.target);
    }
</script>

可选:如果脚本还可以检查服务器文件夹中是否有超过 60 天的图像,如果有则可以删除它们。

非常感谢!!!

你可以这样做。

upload.php

<?php
move_uploaded_file($_FILES["file"]["tmp_name"], '/path/to/file');

参考:http://blog.revivalx.com/2014/07/12/upload-image-using-file-transfer-cordova-plugin-for-ios-and-android/