Home Backend Development PHP Tutorial Sharing basic knowledge of development: understanding basic knowledge of Php

Sharing basic knowledge of development: understanding basic knowledge of Php

Jul 25, 2016 am 08:53 AM

What is php?

PHP is the abbreviation of Hypertext Preprocessor, and the PHP scripting language is embedded in HTML. PHP syntax is a unique mixture of c, Java, perl and new PHP syntax. The purpose of this language is to allow web developers to quickly write web pages.

What is php?

PHPprogrammer refers to a php programmer

What is the model?

Pattern, that is, pattern. is a way to solve problems. You summarize the method to solve a certain problem, at the theoretical level, this is a model.

What is a framework?

frame, the frame. Some semi-finished applications are a set of components that you can choose to complete your own system. To put it simply, it is the stage of using others well. In addition, it is generally a mature framework and continuously upgraded software.

What is a template?

PHP templates are developed since Perl templates. Templates can improve the structure of the website, can change the appearance of the entire site in a few seconds, abstract programming, no garbage html code, designers do not need to care about all the obfuscated code, run faster, and it is easier to reuse old templates ( normal form and )

Who are the users of CGI?

CommonGatewayInterface CGI (Common Gateway Interface), abbreviation for a standard for information exchange between Web hosts and external computer programs. When writing external programs can be used to execute any programming language supported by a web host operating system.

What is a resource database?

A resource is a special variable that holds a reference to an external resource. Resources are set up and used through specialized functions. See the PHP manual for all these functions and corresponding resource types.

What is a class?

Classes are definitions of objects. It contains information about the object's motion model, including its name, methods, properties, and events. In fact, it is not an object itself because it does not exist in memory. When code runs a reference to a class, a new instance of the class, or object, is created in memory. Although there is only one class, it can create multiple objects of the same type in memory from this class.

What is the function?

Functions provide programmers with a convenience. Usually in a complex program design, the program is always divided into some relatively independent parts based on complete functions, and each part writes a function so that each part is completely independent and has a single task. The program is clear, simple, easy to read, and easy to maintain.

What is object-oriented?

The object-oriented method (Object-OrientedMethod) is a systematic method that applies object-oriented thinking to the software development process to guide development activities. Hereinafter referred to as the OO (object-oriented) method, the concept of an object-based method is used. Objects are composed of data and allowed operation schemes, and have a direct relationship with objective entities, similar to the object properties of each class that defines a set of objects. A way to share properties and operations with every class in an inheritance hierarchy. The so-called object-oriented concept based on objects is centered on objects and uses classes and inheritance mechanism structures to recognize, understand and describe the objective world and design and build corresponding software systems.

What is a session?

Conversation is to explain conversation in Chinese. A session begins when the user enters a website URL and ends with him leaving the site.

What is a socket?

A socket, often called an socket, is used to describe an IP address and port, and is a communication chain that handles it. Applications typically request or respond to network requests through a socket.

What is pecl?

PECL is a warehouse packaging system for PHP extension libraries.

What are variables?

Variables in PHP are associated with the variable name and a dollar sign. Variable names are case-sensitive.

What is a constant?

A constant is a simple identifier (name). As the name suggests, this value can change during script execution (except for so-called magic constants, which are not actually constants). Constants are case-sensitive by default. Constant identifiers are always uppercase by convention.

What are global variables?

A constant is a simple identifier (name). As the name suggests, this value can change during script execution (except for so-called magic constants, which are not actually constants). Constants are case-sensitive by default. Constant identifiers are always uppercase by convention.




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)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

How does session hijacking work and how can you mitigate it in PHP? How does session hijacking work and how can you mitigate it in PHP? Apr 06, 2025 am 12:02 AM

Session hijacking can be achieved through the following steps: 1. Obtain the session ID, 2. Use the session ID, 3. Keep the session active. The methods to prevent session hijacking in PHP include: 1. Use the session_regenerate_id() function to regenerate the session ID, 2. Store session data through the database, 3. Ensure that all session data is transmitted through HTTPS.

Describe the SOLID principles and how they apply to PHP development. Describe the SOLID principles and how they apply to PHP development. Apr 03, 2025 am 12:04 AM

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

How to debug CLI mode in PHPStorm? How to debug CLI mode in PHPStorm? Apr 01, 2025 pm 02:57 PM

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

See all articles