Home Backend Development PHP Tutorial Geek Academy in-depth ThinkPHP framework video material sharing

Geek Academy in-depth ThinkPHP framework video material sharing

Aug 31, 2017 am 09:59 AM

As a scripting language widely used on the web server, PHP has unique advantages in agile web development, with many successful cases, active communities, rich resources, and many frameworks. ThinkPHP, as an earlier and relatively mature domestic PHP framework, has a considerable number of users in the country. Through the "Geek Academy In-depth ThinkPHP Framework Video Tutorial", we will introduce the basic knowledge of ThinkPHP to prepare for subsequent actual projects.

Geek Academy in-depth ThinkPHP framework video material sharing

Video playback address: http://www.php.cn/course/322.html

The teacher’s teaching style :

Teachers’ lectures are simple and in-depth, clear in structure, analyzed layer by layer, interlocking, rigorous in argumentation, and rigorous in structure. They use the logical power of thinking to attract students’ attention and use reason to control the classroom teaching process. By listening to teachers' lectures, students not only learn knowledge, but also receive thinking training, and are also influenced and influenced by teachers' rigorous academic attitude.

The more difficult part in this video is the implementation of the shopping cart:

) The user does not log in with the username and password, adds the product, closes the browser and reopens it without logging in with the username and password. Question: Shopping cart product still there?

2) The user logs in with username and password, adds products, closes the browser and reopens it without logging in with username and password. Question: Are the products in the shopping cart still there?

3) The user logs in with username and password, adds products, closes the browser, then opens it again, logs in with username and password. Question: Are the items in the shopping cart still there?

4) The user logs in with username and password, adds products, closes the browser, opens the browser from his hometown, and logs in with username and password. Question: Are the items in the shopping cart still there?

The above four questions are all based on JD.com, so guess what the result is?
1) In
2) No more
3) In
4) In

If you can guess the answer, then you are really great, so about these four How is the point implemented? (If there are friends who don’t agree with it, you can try it with JD.com)
Let’s explain the principle of the shopping cart, and finally talk about the specific code implementation.
1) User If you add products without logging in, the products at this time are added to the browser's cookies, so when you visit again (without logging in), the products are still in the cookies, so the products in the shopping cart still exist.
2 ) The user logs in and adds products. At this time, both the products in the cookie and the products selected by the user will be added to the shopping cart, and then the products in the cookie will be deleted. So when the user visits again (without logging in), the shopping cart in the cookie will be The product has been deleted, so the product in the shopping cart is no longer there.
3) The user logs in and adds the product. At this time, the product is added to the database for persistent storage. Open the login username and password again. The user The selected product must still exist, so the products in the shopping cart still exist.
4)Reason 3)

The above is the detailed content of Geek Academy in-depth ThinkPHP framework video material sharing. 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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

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)

How to evaluate the cost-effectiveness of commercial support for Java frameworks How to evaluate the cost-effectiveness of commercial support for Java frameworks Jun 05, 2024 pm 05:25 PM

Evaluating the cost/performance of commercial support for a Java framework involves the following steps: Determine the required level of assurance and service level agreement (SLA) guarantees. The experience and expertise of the research support team. Consider additional services such as upgrades, troubleshooting, and performance optimization. Weigh business support costs against risk mitigation and increased efficiency.

How does the learning curve of PHP frameworks compare to other language frameworks? How does the learning curve of PHP frameworks compare to other language frameworks? Jun 06, 2024 pm 12:41 PM

The learning curve of a PHP framework depends on language proficiency, framework complexity, documentation quality, and community support. The learning curve of PHP frameworks is higher when compared to Python frameworks and lower when compared to Ruby frameworks. Compared to Java frameworks, PHP frameworks have a moderate learning curve but a shorter time to get started.

How do the lightweight options of PHP frameworks affect application performance? How do the lightweight options of PHP frameworks affect application performance? Jun 06, 2024 am 10:53 AM

The lightweight PHP framework improves application performance through small size and low resource consumption. Its features include: small size, fast startup, low memory usage, improved response speed and throughput, and reduced resource consumption. Practical case: SlimFramework creates REST API, only 500KB, high responsiveness and high throughput

ThinkPHP6 routing: How to completely obtain URL parameters containing special characters such as Chinese? ThinkPHP6 routing: How to completely obtain URL parameters containing special characters such as Chinese? Apr 01, 2025 pm 02:51 PM

ThinkPHP6 routing parameters are processed in Chinese and complete acquisition. In the ThinkPHP6 framework, URL parameters containing special characters (such as Chinese and punctuation marks) are often processed...

How to choose the best golang framework for different application scenarios How to choose the best golang framework for different application scenarios Jun 05, 2024 pm 04:05 PM

Choose the best Go framework based on application scenarios: consider application type, language features, performance requirements, and ecosystem. Common Go frameworks: Gin (Web application), Echo (Web service), Fiber (high throughput), gorm (ORM), fasthttp (speed). Practical case: building REST API (Fiber) and interacting with the database (gorm). Choose a framework: choose fasthttp for key performance, Gin/Echo for flexible web applications, and gorm for database interaction.

How to solve the problem of cURL error 77 when connecting to Elasticsearch 8 using ThinkPHP6 and elasticsearch-php clients? How to solve the problem of cURL error 77 when connecting to Elasticsearch 8 using ThinkPHP6 and elasticsearch-php clients? Mar 31, 2025 pm 11:36 PM

Using the ThinkPHP6 framework combined with elasticsearch-php client to operate Elasticsearch...

How to query the sum of two columns of data at the same time in ThinkPHP6? How to query the sum of two columns of data at the same time in ThinkPHP6? Apr 01, 2025 pm 02:54 PM

ThinkPHP6 database query: How to use TP6 to implement SQL statements SELECTSUM(jin), SUM(chu)FROMsysdbuil In ThinkPHP6 framework, how to use SQL statement SELECT...

Detailed practical explanation of golang framework development: Questions and Answers Detailed practical explanation of golang framework development: Questions and Answers Jun 06, 2024 am 10:57 AM

In Go framework development, common challenges and their solutions are: Error handling: Use the errors package for management, and use middleware to centrally handle errors. Authentication and authorization: Integrate third-party libraries and create custom middleware to check credentials. Concurrency processing: Use goroutines, mutexes, and channels to control resource access. Unit testing: Use gotest packages, mocks, and stubs for isolation, and code coverage tools to ensure sufficiency. Deployment and monitoring: Use Docker containers to package deployments, set up data backups, and track performance and errors with logging and monitoring tools.

See all articles