The Beginning of PHP Learning: Basic Syntax_PHP Tutorial
Why should you learn PHP?
Some time ago, I have been learning the development of android applications. As my learning deepened, I gradually built an image processing system on the android platform. However, I soon discovered an important problem. The Android operating system generally runs on devices with relatively limited hardware resources such as mobile phones and tablets. Image processing requires a large number of matrix operations. Obviously, it is difficult for handheld devices to meet such requirements. A few days ago I looked at some image processing systems based on the android platform. Among them, a C/S mode image processing system proposed by Stanford University's EE368 laboratory aroused my great interest. The process of this system is as follows:
[Picture 1]
That is to say: Although our handheld device resources are limited, we can send the images and other information that need to be processed to the remote server. The server processes the images and then sends the processed information to our mobile phones. PHP plays an important role in it. From this, I started my study of PHP. The following is my personal summary of PHP syntax: (Since I have studied C/C++/JAVA/HTML/MATLAB/ANDROID, etc., I will not give examples where PHP and C languages are similar)
Learn basic PHP syntax with examples (1)
1. Variable name
$abc=1; $_abc=12.5; $_ABC2TR=TURE; (must start with $)
2. Data type
Boolean (Boolean type) is understood as true and false
$bo=TRUE; $bo=FALSE;
integer (integer type)
$bo=1; $bo=-12;
float (floating point type, also called "double") is understood as decimal type
$bo=1.001; $bo=3.1415926;
string (string)
$bo=“This string or EN Word”;
(Use a dot "." to add strings)
array (array)
$bo=array(1,2,3,4); $bo=array(“A”=>1 , “B”=>2);
3. Output statement
Output statement: echo
4. Usage of conditional statement if
(Same as C language)else if;else
5. Examples of usage of conditional statement switch
(Same as C language) case, break, etc.
6. Examples of usage of loop statements for and while
(Same as C language) break
7. Definition and usage examples of arrays
Definition: use array
$arr = array (3,5,7,9,6);
$arr = array("id"=>2,"title"=>3);//Similar to the structure in C language
Usage: Use [ ] square brackets
$arr1 = array(3,5,7,9,6);
$arr2 = array("id"=>2,"title"=>"hello array!");
echo $arr1[0];//output 3
echo "
";//Line break
echo $arr2['title'];//Output helloarray!
$arr2['title']="Hi,Nanjing!";//Assignment
echo "
";//Line break
echo $arr2['title'];//Output Hi,Nanjing!
?>
8. Examples of function declaration and calling
Declaration: function keyword
function name_fun(var1,var2,…){
return var1+var2;
}
Call
Var3= name_fun(var1,var2,…);
Example:
function _11number(){
for($i=1;$i<100;$i++)
{
if($i%11==0){
echo$i."
";
}
}
}
_11number();
Output multiples of 11 within 1~100.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

The difference between string printing in Go language: The difference in the effect of using Println and string() functions is in Go...

The speed of mobile XML to PDF depends on the following factors: the complexity of XML structure. Mobile hardware configuration conversion method (library, algorithm) code quality optimization methods (select efficient libraries, optimize algorithms, cache data, and utilize multi-threading). Overall, there is no absolute answer and it needs to be optimized according to the specific situation.

Go pointer syntax and addressing problems in the use of viper library When programming in Go language, it is crucial to understand the syntax and usage of pointers, especially in...

Why does map iteration in Go cause all values to become the last element? In Go language, when faced with some interview questions, you often encounter maps...

Modifying XML content requires programming, because it requires accurate finding of the target nodes to add, delete, modify and check. The programming language has corresponding libraries to process XML and provides APIs to perform safe, efficient and controllable operations like operating databases.

Go language slice index: Why does a single-element slice intercept from index 1 without an error? In Go language, slices are a flexible data structure that can refer to the bottom...
