为phonegap应用程序制作upload.php脚本

时间:2015-04-16 08:15:52

标签: javascript cordova file-upload image-uploading ionic

我正在为我的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天的图像,那将是很好的,如果是这样,它可以删除它们。

非常感谢!!!

1 个答案:

答案 0 :(得分:0)

你可以这样做。

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/