我有一个 Flash 应用程序,它通过网络摄像头捕获图像并将其存储在 save.php 文件中(如下)。现在我遇到的问题是在加载 save.php 时我无法访问我的会话变量。调用会话变量时我需要使用其他方法吗?
<?php
include 'session.php';
sec_session_start();
$userid=$_SESSION['user_id'];
$w = 300;
$h = 400;
$img = imagecreatetruecolor($w, $h);
imagefill($img, 0, 0, 0xFFFFFF);
$rows = 0;
$cols = 0;
for($rows = 0; $rows < $h; $rows++){
$c_row = explode(",", $_POST['px' . $rows]);
for($cols = 0; $cols < $w; $cols++){
$value = $c_row[$cols];
if($value != ""){
$hex = $value;
while(strlen($hex) < 6){
$hex = "0" . $hex;
}
$r = hexdec(substr($hex, 0, 2));
$g = hexdec(substr($hex, 2, 2));
$b = hexdec(substr($hex, 4, 2));
$test = imagecolorallocate($img, $r, $g, $b);
imagesetpixel($img, $cols, $rows, $test);
}
}
}
if(isset($userid)){
$fp = fopen("name.jpg", "w");
ob_start();
imagejpeg($img, "", 90);
$img = ob_get_contents();
ob_end_clean();
fwrite($fp, $img);
echo "name.jpg";
echo $userid;
exit;
}
?>
这个 session.php
function sec_session_start() {
$session_name = 'sec_session_id';
$secure = true;
$httponly = true;
ini_set('session.use_only_cookies', 1);
$cookieParams = session_get_cookie_params();
$cookieParams["lifetime"], $cookieParams["path"], $cookieParams["domain"],
$secure, $httponly);
session_name($session_name);
session_start(); // Start the php session
session_regenerate_id(true);
}
数据从 flash 发送到 save.php 通过
load_var.sendAndLoad("save.php", result_lv, "POST");
谢谢你的时间。
更新
好的,现在我正在尝试将会话变量传递给 flash 并在 save.php 中检索它。这就是使用 flsahvars 的方式。
var flashvars = {
phpsessionid:<?php print $user_id;?>,
};
var cam = new SWFObject("webcamvid.swf", "player_mc", "400", "500", "8",
"#336699",flashvars);
cam.addParam("quality", "high");
cam.addParam("wmode", "transparent");
cam.addParam("pluginurl", "http://www.macromedia.com/go/getflashplayer");
cam.addParam("pluginspage", "http://www.macromedia.com/go/getflashplayer");
<!--so.addParam("allowFullScreen", "true"); -->
cam.addParam("salign", "t");
cam.write("takepic");
这用于在 flash 应用程序中检索 flashvars:
function getFlashVars():Object {
return Object( LoaderInfo( this.loaderInfo ).parameters );
}
var _var1=getFlashVars().phpsessionid;
然后发送。
_var1.sendAndLoad("save.php", PHPSESSNID, "POST");
请注意闪光灯也有
load_var.sendAndLoad("save.php", result_lv, "POST");
这是另一个变量。
我无法在 save.php 中检索 _var1。知道如何使这项工作谢谢