Home Backend Development PHP Tutorial The Beginning of PHP Learning: Basic Syntax_PHP Tutorial

The Beginning of PHP Learning: Basic Syntax_PHP Tutorial

Jul 13, 2016 pm 05:53 PM
android php Why exist Basic study app develop of want grammar along with

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]

The Beginning of PHP Learning: Basic Syntax_PHP Tutorial
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.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/478000.htmlTechArticleWhy should you learn PHP? I have been learning the development of android applications some time ago. As my learning deepened, I gradually built an image processing system on the android platform. However, I soon...
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 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months 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)

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.

What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? Apr 03, 2025 am 12:03 AM

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.

In Go, why does printing strings with Println and string() functions have different effects? In Go, why does printing strings with Println and string() functions have different effects? Apr 02, 2025 pm 02:03 PM

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

Is the conversion speed fast when converting XML to PDF on mobile phone? Is the conversion speed fast when converting XML to PDF on mobile phone? Apr 02, 2025 pm 10:09 PM

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.

Why is it necessary to pass pointers when using Go and viper libraries? Why is it necessary to pass pointers when using Go and viper libraries? Apr 02, 2025 pm 04:00 PM

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 do all values ​​become the last element when using for range in Go language to traverse slices and store maps? Why do all values ​​become the last element when using for range in Go language to traverse slices and store maps? Apr 02, 2025 pm 04:09 PM

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...

Does XML modification require programming? Does XML modification require programming? Apr 02, 2025 pm 06:51 PM

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: Why does it not report an error when single-element slice index 1 intercept? Go language slice: Why does it not report an error when single-element slice index 1 intercept? Apr 02, 2025 pm 02:24 PM

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...

See all articles