0

我在 uploadify (v3.1) 中通过 formData 选项传递会话数据的解决方法遇到了一些困难。我已在此页面上实施了建议,但收到 HTTP 500 错误。

我想知道如何检查我的会话中的内容,看看解决方法是否真的有效,即我的会话ID 是否真的被传递给uploadify.php。返回uploadify.php中回显的变量的常用方法是onUploadSuccess事件,但我不能使用它,因为上传没有成功完成!

所以我想知道我还有什么其他选择。我知道诸如var_dump( $_SESSION );or之类的方法die(print($_SESSION));,但我不知道在哪里可以找到这些返回的信息。

我在下面包含了完整的 uploadify.php 脚本,以防万一。

谢谢,

缺口

<?php
$session_name = session_name();

if (!isset($_POST[$session_name])) {
    exit;
} else {
    session_id($_POST[$session_name]);
    session_start();
}

/*
Uploadify
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
Released under the MIT License <http://www.opensource.org/licenses/mit-license.php&gt; 
*/
// Define a destination
$targetPath = 'media/' . $_SESSION["user_name"] . '/';

if (!empty($_FILES)) {
    $tempFile = $_FILES['Filedata']['tmp_name'];
    $targetFile = $targetPath . $_FILES['Filedata']['name'];

    // Validate the file type
    $fileTypes = array('jpg','jpeg','gif','png'); // File extensions
    $fileParts = pathinfo($_FILES['Filedata']['name']);

    if (in_array($fileParts['extension'],$fileTypes)) {
        move_uploaded_file($tempFile,$targetFile);
        echo '1';
    } else {
        echo 'Invalid file type.';
    }
}

?>
4

1 回答 1

0

您也可以使用print_r($_SESSION),但var_dump($_SESSION)也很有用。

记住,你只能在之后使用session_start();

于 2012-05-24T11:19:40.627 回答