Home Backend Development PHP Tutorial PHP learning officially sets sail (1)

PHP learning officially sets sail (1)

Dec 28, 2016 am 09:06 AM
php

PHP is the abbreviation of the English hypertext preprocessing language Hypertext Preprocessor. PHP is an HTML embedded language. It is a scripting language that is embedded in HTML documents and is executed on the server side. The language style is similar to C language and is widely used.

php is a scripting language that can only be run on the browser, unlike java and C# which can be run on the console
This is the php standard format
Let’s start learning Hello world is often used in programming languages
echo "hello,world";
?>

echo is the print in php and will be displayed in the browser

PHP learning officially sets sail (1)

php can be embedded into html code
From a syntactic point of view, PHP language is similar to C language. It can be said that PHP draws on the grammatical features of C language and is improved from C language. We can mix PHP code and HTML code. Not only can we embed PHP scripts into HTML files, we can even embed HTML tags in PHP scripts.
Separate from HTML The following methods can be used:
. . . ?> Not rigorous
Just use this
. . . This is too long. .
This is like asp


About comments
PHP supports C, C++ and Unix style comments:
/* C,C++ Style multi-line comments*/
// C++ style single-line comments
# Unix-style single-line comments

The first two are still used more


echo and print PHP and The simplest interaction of HTML is achieved through print and echo statements. In actual use, the functions of print and echo are almost exactly the same. It can be said that wherever one can be used, the other can also be used. However, there is still a very important difference between the two: in the echo function, multiple strings can be output at the same time, while in the print function, only one string can be output at the same time. At the same time, the echo function does not require parentheses, so the echo function is more like a statement than a function. Let's take a look at the following example:

$a="hello";
$b="world";
echo "a","b";
print "a","b";
?>
will report an error directly
Parse error: syntax error, unexpected ','
So this is the only way

$a="hello";
$b="world";
echo "a","b";
print "a";
?>

The above will print aba


$a="hello";
$b="world";
echo $a.$b;
print $a ;
?>
will print helloworldhello
$a="hello"; is to define a string and add $ before the letter to indicate that it is a variable
And the variable type is determined by php , the key is to see what value you assign to the variable
This is similar to JavaScript's var definition of variables
$Although this form looks a bit awkward, it will be fine once you get used to it. At least you don't need to consider it when defining variables using this Type, there is no need to consider any type conversion, this is much simpler than C language
How to check what type a variable is?
Use var_dump function

$a="hello";
$b=1;
$c=1.1;
$d='h';
$e=true;
echo var_dump($a);
echo var_dump($b);
echo var_dump($c);
echo var_dump($d);
echo var_dump($e);
?>
The result is

PHP learning officially sets sail (1)


The above is the official start of PHP learning (1) For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles