php all the way

Aug 08, 2016 am 09:20 AM
linux memcache nbsp php session

                                                                                                                                but I have been doing it for two or three years now. This summary should be a summary of my past period.

          PHP is a weakly typed language. The so-called typed language does not mean that there is no type distinction, but that there is no obvious type definition. PHP variables do not need to be defined in advance, only a $ symbol is needed, such as: $a/$b/$c. The underlying implementation of PHP variables is implemented using Union in C, but PHP variables will automatically perform type conversion during operation. Secondly, PHP variables use "reference copy" and "copy on write" mechanism.

                                                                                                                                  There can be a state of not knowing how to learn, I feel that the realization of functions can be realized, there is nothing to learn, indeed there is nothing to learn in PHP itself in the later period, at this time you can try to learn some design patterns, Go look at some open source code, try to encapsulate MVC, and try to use the original PHP language to implement encapsulation in some frameworks. After reading this, you can try to take a look at the source code of PHP. Maybe you will find that the source code of PHP is still difficult to understand at this time. It doesn't matter. It is like this at the beginning. You can re-learn C language and c++, at this point you may find that going from c to c++ is actually an encapsulation process. You will also find that a large number of structures (structs), define, typedef, and a large number of one, two, and three pointers are used in the PHP source code. You will find that it is not that there is nothing to learn about PHP, but that you need to dig deeper. After that, you will have something to do in the next few days. Take a look at the source code of PHP, try to implement PHP extensions, and put it into your own environment. Call it.

It’s not that there is nothing to learn in the later stages of PHP, but the language itself is relatively simple. If you only learn things at the application level, there is really nothing to learn. Okay, after roughly reading the source code, you will find that php will be parsed into opcode and then executed. You will know the usage of apc, the concept of memcache and radius, and you will have a more in-depth understanding of php. Next, Let's turn to optimization. W PHP is a web development language, so it involves optimization when it involves web. How can it be optimized? Website bottlenecks generally exist in two places: one is the bottleneck of the database, and the other is the bottleneck of the PHP language. Database aspects: optimization of table structure, selection of mysql engine, addition of indexes, vertical table partitioning, horizontal table partitioning, master-slave database Reading and writing classification,clustering. In terms of PHP, we can start from optimizing css and js in the view layer, compress and merge css and js, process images, merge icons, etc. The controller layer optimizes SQL statements to reduce the use of related queries and subqueries. The SQL statements can be split and executed, and then the data can be combined. Use page static processing to process some pages that do not change frequently, use memcache/apc/radius as database cache to relieve database pressure, and use the opcode function to reduce php parsing (after php5.5, the built-in opcode eliminates apc, you can also use apc Implementation), choose the faster nginx instead of apache service, cluster the server, etc. Of course, there are also optimization techniques in the way PHP is written, such as the use of single quotes and double quotes, include The use of requirements and so on will not be described again. At this point you still have a lot to learn.

When you feel that there is no improvement in learning a weakly typed language, maybe you can learn a strongly typed language again. For example, when you learn java to make jsp, you will find that there is no session in jsp that you take for granted. You can Choose to use existing data structures such as map and hashmap to encapsulate the session. You may be used to the functions provided by the framework, but here, you really need to encapsulate a database link to read and return the data to a map. methods to facilitate your development.

When you feel that there is no improvement in learning PHP, maybe you should learn Linux. In fact, you don’t need to read many books, just switch to a Linux system and try to use it. You will find that Linux is actually more useful than Windows. You can use a set of lnmp/lamp, try to write some shell code, automatically back up your database, and even follow your PHP to achieve certain functions. It is also very convenient to configure PHP's xdebug to try to use breakpoints to debug PHP programs. It is also very convenient to write some PHP extensions, configure memcache, etc. You can try to use vim to write something and try to use Gcc compiles c, try to use gdb to debug the program, try to use the command line to do more things, you will find that php is actually a perfect match for Linux.

练 At this time, you can already use Linux proficiently. Why not try to achieve a small framework yourself to analyze the skills in the common framework, PHP object -oriented, PHP magic function, how PHP can achieve polymorphism, how And how PHP runs in Apache, why nginx has higher performance than Apache, how to share sessions on multiple servers, how to use curl to call some interfaces for use in certain situations during the development process, and how to use serialize/unserialize To realize the serialization and storage of some data and the use of deserialization sessions, how to crawl the content of some websites, and how to improve some usage habits. In short, you still need to do a lot. It’s not that there is nothing to learn in PHP, but you should not stay in the coding stage. You should learn more in-depth things. Believe that when you feel that there is nothing to learn, there is a lot. Most of it is because your knowledge scope is still too small and your cognitive level is too shallow.

          Programming is not easy, it’s hard to learn and cherish it, and it’s not easy to find a job, so you should always work hard to improve yourself.


Copyright Statement: This article is an original article by the blogger and may not be reproduced without the blogger's permission.

The above has introduced the journey of PHP, including various aspects. I hope it will be helpful to friends who are interested in PHP tutorials.

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)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

deepseek web version entrance deepseek official website entrance deepseek web version entrance deepseek official website entrance Feb 19, 2025 pm 04:54 PM

DeepSeek is a powerful intelligent search and analysis tool that provides two access methods: web version and official website. The web version is convenient and efficient, and can be used without installation; the official website provides comprehensive product information, download resources and support services. Whether individuals or corporate users, they can easily obtain and analyze massive data through DeepSeek to improve work efficiency, assist decision-making and promote innovation.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

How to install deepseek How to install deepseek Feb 19, 2025 pm 05:48 PM

There are many ways to install DeepSeek, including: compile from source (for experienced developers) using precompiled packages (for Windows users) using Docker containers (for most convenient, no need to worry about compatibility) No matter which method you choose, Please read the official documents carefully and prepare them fully to avoid unnecessary trouble.

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Ouyi okx installation package is directly included Ouyi okx installation package is directly included Feb 21, 2025 pm 08:00 PM

Ouyi OKX, the world's leading digital asset exchange, has now launched an official installation package to provide a safe and convenient trading experience. The OKX installation package of Ouyi does not need to be accessed through a browser. It can directly install independent applications on the device, creating a stable and efficient trading platform for users. The installation process is simple and easy to understand. Users only need to download the latest version of the installation package and follow the prompts to complete the installation step by step.

Get the gate.io installation package for free Get the gate.io installation package for free Feb 21, 2025 pm 08:21 PM

Gate.io is a popular cryptocurrency exchange that users can use by downloading its installation package and installing it on their devices. The steps to obtain the installation package are as follows: Visit the official website of Gate.io, click "Download", select the corresponding operating system (Windows, Mac or Linux), and download the installation package to your computer. It is recommended to temporarily disable antivirus software or firewall during installation to ensure smooth installation. After completion, the user needs to create a Gate.io account to start using it.

See all articles