0

我目前使用以下代码作为图像验证码。

<?php
session_start();    
$alphanum = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ123456789";
// generate the verication code 
$rand = substr(str_shuffle($alphanum), 0, 5);
// choose one of four background images
$bgNum = rand(1, 4);
$image = imagecreatefromjpeg("background$bgNum.jpg");
$textColor = imagecolorallocate ($image, 0, 0, 0);
// create the hash for the random number and put it in the session
$_SESSION['image_random_value'] = md5($rand);
// write the random number
imagestring ($image, 15, 50, 10, $rand, $textColor);    
// Date in the past
header("Expires: Mon, 23 January 2009 01:00:00 GMT");
// always modified
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
// HTTP/1.1
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
// HTTP/1.0
header("Pragma: no-cache");
// send the content type header so the image is displayed properly
header('Content-type: image/jpeg');
// send the image to the browser
imagejpeg($image);
// destroy the image to free up the memory
imagedestroy($image);
?>

然后我使用以下内容来验证表单提交中的验证码...

if (md5(addslashes($_POST['antispam'])) != $_SESSION['image_random_value']) {

我多年来一直在使用它,它在浏览器中运行完美,但我刚刚意识到它在 Iphone 上不起作用。

使用 echo $_SESSION['image_random_value']; 在浏览器中返回会话值,但在 iphone 上返回一个空变量?

我已经厌倦了更改过期日期,并注释掉一些参数 ref 缓存控制。但这些都不起作用。有关信息,我确实在我的 iPhone 上启用了 cookie。

关于我错过了什么的任何提示或指示?

4

1 回答 1

0

好吧,对于那些有类似问题的人来说,事实证明我是直接从 URL 中提取脚本,这当然会导致设置会话的问题。希望对某人有所帮助。

于 2012-10-13T21:20:22.370 回答