


The basics of PHP syntax that front-end must learn, front-end PHP syntax_PHP tutorial
The basics of PHP syntax that front-end must learn, front-end PHP syntax
Written in front
PHP is a powerful server-side scripting language for creating dynamic and interactive sites. PHP can contain text, HTML, CSS and PHP code, execute it on the server, and the result is returned to the browser as plain text
Code identification
PHP code starts with , and can be placed anywhere in the document
<?php // ?>
PHP statements end with a semicolon (;), and the closing tag of a PHP code block will automatically indicate the semicolon
<?php echo "Hello World!"; ?>
Notes
PHP supports three types of comments, including two single-line comments and one multi-line comment
<?php // 这是单行注释 #这也是单行注释 /* 这是多行注释块 它横跨多行 */ ?>
Output
In PHP, there are two basic output methods: echo and print
print can only output a string and always returns 1
Echo can output more than one string. Echo is slightly faster than print because it does not return any value.
Friendly reminder between scripts: echo and print are both language structures. You can use echo or echo() with or without parentheses, and print or print(), and echo or print There must be at least one space
between the keyword and the string<?php echo "<h2>PHP is fun!</h2>"; echo "Hello world!<br>"; echo "I'm about to learn PHP!<br>"; echo "This", " string", " was", " made", " with multiple parameters."; ?> <?php print "<h2>PHP is fun!</h2>"; print "Hello world!<br>"; print "I'm about to learn PHP!<br>"; //该行出错,因为print只能输出1个字符串 print "This", " string", " was", " made", " with multiple parameters."; ?>
Calculation expression
Unlike HTML and CSS, you can write calculation expressions in PHP
<?php //36 echo 12*3; ?>
Case
In PHP, all user-defined functions, classes and keywords are not case-sensitive, but all variables are case-sensitive
<?php //Hello World! ECHO "Hello World!<br>"; //Hello World! echo "Hello World!<br>"; //Hello World! EcHo "Hello World!<br>"; ?>
Bangkejia kindly reminds everyone to pay attention to : . sign represents string connection. In other programming languages, the sign
is generally used<?php $color="red"; //My car is red echo "My car is " . $color . "<br>"; //My house is echo "My house is " . $COLOR . "<br>"; //My boat is echo "My boat is " . $coLOR . "<br>"; ?>
The above content is the basic PHP syntax that the editor has shared with you. I hope it will be helpful to you. At the same time, I would like to thank you for your continued support of the Bangkejia website. I also wish you all a happy New Year. !
Articles you may be interested in:
- PHP basic syntax format
- How to check whether there are syntax errors in PHP files in PHP
- php trim removal Definition and syntax introduction of null characters
- Configuring PHP web pages to display various syntax errors
- Basic syntax summary of PHP regular expressions
- Vim plug-in for PHP syntax automatic checking
- Basics and variables of PHP syntax summary

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

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

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

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

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

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

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

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

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