search
HomeBackend DevelopmentPHP TutorialPhotoshop learning experience PHP learning basics Page 1/2

WEB Application
When the client makes a request to the server program, the web server responds to the corresponding page according to the request. When the page contains a PHP script, the server will hand it over to the PHP interpreter for interpretation and execution, and then return the generated html code. Passed to the client, the client's browser interprets the html code and finally forms a page in web format.
What PHP can do
PHP is mainly used in three areas:
PHP analyzer, a WEB server and a WEB browser.
PHP syntax structure
The lexical structure of a programming language refers to a collection of basic rules that govern how to write programs in the language.
User-defined function names or class names are not case-sensitive, while variables are case-sensitive. That is to say, $name, $NAME and $NaMe are three different variables.
PHP uses semicolons to separate simple statements.
PHP comments
PHP supports C, C++ and Shell script style comments, as follows:
// Single-line comments
/* */ Multi-line comments (Note: cannot be nested)
# Script comments
~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
Constants
A constant is a fixed value, defined with a simple identifier. Constants are case-sensitive by default.
Constant identifiers are always uppercase by convention.
define() uses this function to define constants.
String (string) constants are divided into: built-in constants and custom constants.
Constants can only contain scalar data (boolean (Boolean), integer (integer), float (floating point number))
Built-in constants: constants provided by the PHP system that will not change in value on any page
PHP_OS: Displays the operating system version of the server
PHP_VERSION: Display the PHP version
Some common system constants
__FILE__: PHP file name, if it is a reference file, the reference file name is displayed
__LINE__: The number of lines of the PHP file
TRUE FALSE: A constant indicating true or false
E_ERROR: Specify Identify the most recent errors in the code
E_WARNING: Indicate the most recent warnings in the code
E_PARSE: Analyze where there are potential problems in the code
E_NOTICE: For unusual but not necessarily wrong places
Custom constants
Use define () to define constants
define("mycomputer", "IBM");
Define constants: mycomputer The value of the constant is IBM
defined("mycomputer");
Check whether the constant is defined, return 1 if it is defined, otherwise return empty
In variable
PHP, a dollar sign ($) followed by a variable name represents a variable.Variable names are case-sensitive
$var = 'Bob';
$Var = 'Joe';
echo "$var, $Var"; // Output "Bob, Joe" can be output at the same time Two variable names
$4site = 'not yet'; //Illegal variable name; starts with a number Variables cannot start with a number
$_4site = 'not yet'; $i site is = 'mansikka'; // Legal variable name; You can use Chinese but it is not recommended to use
isset($var) //Check whether the variable is defined
unset($var) //Delete the variable $var
empty($ var) //Determine whether the value of a variable exists
echo $var //Empty
>
Variable variable
A variable variable obtains the value of an ordinary variable as the variable name of the variable variable
$a = 'hello'; // Ordinary variables
$$a = 'world'; // Variable variables Variable variables use the value of an ordinary variable as the name of the variable variable
echo "$a ${$a} "; //Output: hello world
echo "$a $hello"; //Output: hello world
>
Constants are different from variables
There is no dollar sign ($) in front of constants;
Constants can only be used with the define() function Definition, not through assignment statements;
Constants can be defined and accessed anywhere regardless of the rules of variable scope;
Once defined, a constant cannot be redefined or undefined;
The value of a constant can only be a scalar
Data type
Four scalar types:
Boolean
Integer
Float (float, also called double)
String (string)
Two composite types:
Array
Object (object)
Finally, there are two special types:
Resource (resource)
NULL Empty
PHP is a very weakly typed language.
In PHP, the type of a variable is usually not set by the programmer. Rather, it is determined at runtime (i.e. the value of the variable) based on the context in which the variable is used.
Example:
$bool = TRUE; // Boolean type
$str = “foo”; // String
$int = 12; boolean (gettype gets the type of the variable)
echo gettype($str); // Output string
>
Integer type
The integer value can be specified in decimal, hexadecimal or octal notation, and can be preceded by an optional symbol (- or +).
$a = 1234; // Decimal number
$a = -123; // A negative number
$a = 0123; // Octal number (equal to decimal 83)
$a = 0x1a; // Ten Hexadecimal number (equal to decimal 26)
>
Floating point
Floating point number (also called float, double or real number) can be defined with any of the following syntax:
$a = 1.234;
$a = 1.2e3;
$a = 7E-10;
>
String
string is a series of characters. In PHP, characters are the same as bytes, which means there are a total of 256 different character possibilities. This also implies that PHP has no native support for Unicode. (The following chapter will explain the string type in detail)

Boolean
This is the simplest type. boolean represents a truth value, which can be TRUE or FALSE.
When other types are converted to boolean types, the following values ​​are considered FALSE:
Boolean value FALSE
Integer value 0 (zero)
Floating point value 0.0 (zero)
Blank string and string "0"
None Array of member variables
Object without cells (only available in PHP 4)
Special type NULL (including variables that have not been set)
All other values ​​are considered TRUE (including any resources).
Array
Array is an important data type in PHP. A scalar can only store one data, while an array can store multiple data.
$my=array('1','2','abc','d');
Object (Object)
Object is an advanced data type that we will learn later
Resource (Resource)
Resources are composed of specialized Function to create and use
Type cast
Type cast in PHP: Add the target type enclosed in parentheses before the variable to be converted.
The allowed casts are:
(int), (integer) - Convert to integer type
(bool), (boolean) - Convert to Boolean type
(float), (double), (real) - Convert to floating point Type
(string) - Convert to string
(array) - Convert to array
(object) - Convert to object
$foo = 10; // $foo is an integer
$bar = (boolean) $foo; // $bar is a boolean
>

Current page 1/2 12Next page

The above introduces the photoshop learning experience, PHP learning basics, page 1/2, including the photoshop learning experience. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement
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
11 Best PHP URL Shortener Scripts (Free and Premium)11 Best PHP URL Shortener Scripts (Free and Premium)Mar 03, 2025 am 10:49 AM

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Introduction to the Instagram APIIntroduction to the Instagram APIMar 02, 2025 am 09:32 AM

Following its high-profile acquisition by Facebook in 2012, Instagram adopted two sets of APIs for third-party use. These are the Instagram Graph API and the Instagram Basic Display API.As a developer building an app that requires information from a

Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Announcement of 2025 PHP Situation SurveyAnnouncement of 2025 PHP Situation SurveyMar 03, 2025 pm 04:20 PM

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

See all articles

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 agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment