Table of Contents
Problem Description
Program design
Solution
thinkphp enables redis support
laravel opens redis
laravel gets thinkphp's session
Home Backend Development PHP Tutorial laravel5.6 and thinkphp3.2 use redis to share session

laravel5.6 and thinkphp3.2 use redis to share session

Jul 07, 2018 pm 05:06 PM
laravel redis session thinkphp

This article mainly introduces the solution of using redis to share sessions between laravel5.6 and thinkphp3.2. It has a certain reference value. Now I share it with you. Friends in need can refer to it.

In practice Among the projects, the historical project was developed using thinkphp3.2. Now it is necessary to update the functions. The updated functions are planned to be developed using laravel5.6.

Problem Description

There are several key issues that need to be solved, one of which is the issue of user authentication. That is, after system 1 only logs in, system 2 automatically recognizes its login information. That is to say, the essence needs to be solved: the problem of laravel and thinphp sharing session.

Program design

session uses redis for storage. Thinkphp and laravel access redis together and automatically obtain the authenticated user information stored in redis based on the same cookie.

Solution

thinkphp enables redis support

thinkphp3.2 does not have redis support for integrated sessions. At this time, we use the settings in php to enable it. In index.php, we add the following two lines of statements:

ini_set("session.save_handler", "redis");
ini_set("session.save_path", "tcp://redis:6379");
Copy after login
You can also add it to the config.php configuration file

At this time, when thinkphp stores the session, it will be PHPREDIS_SESSION is stored as a prefix.

laravel opens redis

The method of laravel opening redis is relatively complicated. For specific information, you need to refer to the official documentation to use composer to install Predis and perform related configurations.

laravel gets thinkphp's session

Because laravel completely deprecated PHP's built-in session. So there is no way for us to get any information through $_SESSION (you may even get an undefined variable error). Because laravel's cookies are encrypted. Therefore, we cannot use laravel's own cookies to obtain cookie information.

The specific implementation ideas are:
1 Get the native cookie.
2 Join PHPREDIS_SESSION to form a key
3 Use redis to directly obtain the value stored in the key

...
use Illuminate\Support\Facades\Redis;
...
    $cookie = $_COOKIE['PHPSESSID'];
    $session = Redis::get('PHPREDIS_SESSION:' . $cookie);
Copy after login

This $session is the session value in the thinkphp system.

The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

The above is the detailed content of laravel5.6 and thinkphp3.2 use redis to share session. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Laravel - Artisan Commands Laravel - Artisan Commands Aug 27, 2024 am 10:51 AM

Laravel - Artisan Commands - Laravel 5.7 comes with new way of treating and testing new commands. It includes a new feature of testing artisan commands and the demonstration is mentioned below ?

Laravel - Facades Laravel - Facades Aug 27, 2024 am 10:50 AM

Laravel - Facades - Facades provide a static interface to classes that are available in the application's service container. Laravel facades serve as static proxies to underlying classes in the service container, providing the benefit of a terse, exp

Laravel - Pagination Customizations Laravel - Pagination Customizations Aug 27, 2024 am 10:51 AM

Laravel - Pagination Customizations - Laravel includes a feature of pagination which helps a user or a developer to include a pagination feature. Laravel paginator is integrated with the query builder and Eloquent ORM. The paginate method automatical

Laravel - Dump Server Laravel - Dump Server Aug 27, 2024 am 10:51 AM

Laravel - Dump Server - Laravel dump server comes with the version of Laravel 5.7. The previous versions do not include any dump server. Dump server will be a development dependency in laravel/laravel composer file.

Laravel - Sending Email Laravel - Sending Email Aug 27, 2024 am 10:50 AM

Laravel - Sending Email - Laravel uses free feature-rich library SwiftMailer to send emails. Using the library function, we can easily send emails without too many hassles. The e-mail templates are loaded in the same way as views, which means you can

Laravel - Artisan Console Laravel - Artisan Console Aug 27, 2024 am 10:51 AM

Laravel - Artisan Console - Laravel framework provides three primary tools for interaction through command-line namely: Artisan, Ticker and REPL. This chapter explains about Artisan in detail.

Laravel - Action URL Laravel - Action URL Aug 27, 2024 am 10:51 AM

Laravel - Action URL - Laravel 5.7 introduces a new feature called “callable action URL”. This feature is similar to the one in Laravel 5.6 which accepts string in action method. The main purpose of the new syntax introduced Laravel 5.7 is to directl

Why does an error occur when installing an extension using PECL in a Docker environment? How to solve it? Why does an error occur when installing an extension using PECL in a Docker environment? How to solve it? Apr 01, 2025 pm 03:06 PM

Causes and solutions for errors when using PECL to install extensions in Docker environment When using Docker environment, we often encounter some headaches...

See all articles