SESSION在不同浏览器的使用问题,请教
<?php session_start(); // 配置验证码 $code_ini = array( 'code_count' => 4, // 验证码长度 'code_size' => 20, // 验证码字体大小 'code_width' => 100, // 验证码框宽度 'code_height' => 36, // 验证码框高度 'code_num' => true, // 开启数字 'code_upper' => true, // 开启大写字母 'code_lower' => true, // 开启小写字母 'code_remove' => '1li0oO2zZ' ) // 排除易混淆字符 ; // 将配置项转为对应变量 foreach ($code_ini as $key => $value) { $$key = $value; } // 创建验证码画布 $code_img = imagecreatetruecolor($code_width, $code_height); $black = imagecolorallocate($code_img, 0, 0, 0); // 填充随机背景颜色 $bg = imagecolorallocate($code_img, rand(200, 255), rand(200, 255), rand(200, 255)); imagefill($code_img, 0, 0, $bg); // 随机画100个干扰点 for ($i = 0; $i < 100; $i ++) { $color = imagecolorallocate($code_img, rand(0, 200), rand(0, 200), rand(0, 200)); imagesetpixel($code_img, rand(2, $code_width - 2), rand(2, $code_height - 2), $color); } // 随机画10个干扰线 for ($q = 0; $q < 10; $q ++) { $color = imagecolorallocate($code_img, rand(0, 200), rand(0, 200), rand(0, 200)); imageline($code_img, rand(2, $code_width - 2), rand(2, $code_height - 2), rand(2, $code_width - 2), rand(2, $code_height - 2), $color); } // 获取验证码 $code = get_code($code_count, $code_num, $code_upper, $code_lower, $code_remove); $_SESSION['code'] = $code; for ($i = 0; $i < $code_count; $i ++) { $color = imagecolorallocate($code_img, rand(0, 200), rand(0, 200), rand(0, 200)); imagettftext($code_img, $code_size, rand(- 30, 30), 5 + 20 * $i, 24, $color, '../Fun/shruti.ttf', $code[$i]); } imagerectangle($code_img, 0, 0, $code_width - 1, $code_height - 1, $black); // 输出验证码 header('content-type:image/gif'); imagegif($code_img); // 销毁资源 imagedestroy($code_img); // 获得验证码 function get_code($code_count, $code_num, $code_upper, $code_lower, $code_remove) { $num = array(); $upper = array(); $lower = array(); if ($code_num) { $num = range(0, 9); } if ($code_upper) { $upper = range('A', 'Z'); } if ($code_lower) { $lower = range('a', 'z'); } // 合并符合条件数组 $arr = array_merge($num, $lower, $upper); // 排除易混淆字符 $remove = str_split($code_remove); $arr1 = array_diff($arr, $remove); $mess = ''; for ($i = 0; $i < $code_count; $i ++) { $mess .= $arr1[array_rand($arr1)]; $_SESSION['code'] = $mess; } return $mess; }
以上就是SESSION在不同浏览器的使用问题,请教的内容,更多相关内容请关注PHP中文网(www.php.cn)!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to avoid being detected when using FiddlerEverywhere for man-in-the-middle readings When you use FiddlerEverywhere...

Solution to Redirecting 404 Errors after Simulation Login When using Selenium for Simulation Login, we often encounter some difficult problems. �...

How to implement cross-application jump for Word plug-in login authorization? When using certain Word plugins, we often encounter this scenario: click on the login in the plugin...

Understanding the anti-crawling strategy of Investing.com Many people often try to crawl news data from Investing.com (https://cn.investing.com/news/latest-news)...

Discussion on the task status after the local computer of Jiutian Computing Power Platform is closed. Many users will encounter a question when using Jiutian Computing Power Platform for artificial intelligence training...

Problems and solutions encountered when using the requests library to crawl web page data. When using the requests library to obtain web page data, you sometimes encounter the...

This article introduces various methods to troubleshoot and fix memory leaks in Flutter applications on Debian systems. 1. Use FlutterDevTools to detect memory leaks to install DevTools: Run flutterpubglobalactivatedevtools in the terminal to install FlutterDevTools. Run the application (Profile mode): Use flutterrun--profile to run your Flutter application and enter performance analysis mode. Start DevTools: Open http://localhost:9 in the browser

"DebianStrings" is not a standard term, and its specific meaning is still unclear. This article cannot directly comment on its browser compatibility. However, if "DebianStrings" refers to a web application running on a Debian system, its browser compatibility depends on the technical architecture of the application itself. Most modern web applications are committed to cross-browser compatibility. This relies on following web standards and using well-compatible front-end technologies (such as HTML, CSS, JavaScript) and back-end technologies (such as PHP, Python, Node.js, etc.). To ensure that the application is compatible with multiple browsers, developers often need to conduct cross-browser testing and use responsiveness
