我在uploadify(v3.1)中的变通方法遇到一些困难,因为它通过formData选项传递会话数据。我已在this page上实施了该建议,但我收到了HTTP 500错误。
我想知道如何检查我的会话中的内容,看看解决方法是否真的有效,即我的会话ID是否真的被传递给uploadify.php。返回变量在uploadify.php中回应的常用方法是onUploadSuccess事件,但我不能使用它,因为上传没有成功完成!
所以我想知道我还有其他选择。我知道var_dump( $_SESSION );
或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>
*/
// 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.';
}
}
?>
答案 0 :(得分:0)
您也可以使用print_r($_SESSION)
,但var_dump($_SESSION)
也很有用。
请记住,您只能在session_start();