search
HomeBackend DevelopmentPHP ProblemHow to define php variables

How to define php variables

Nov 12, 2019 am 10:54 AM
php variables

How to define php variables

How to define php variables?

PHP Variables

Variables are "containers" used to store information:

Example

<?php
$x=5;
$y=6;
$z=$x+$y;
echo $z;
?>

Output:

11

Similar to Algebra

x=5
y=6
z=x+y

In algebra, we use letters (like x) and assign values ​​to them (like 5).

From the above expression z=x y , we can calculate the value of z to be 11.

In PHP, these letters are called variables.

Lamp variables are containers used to store data.

PHP variables

Similar to algebra, PHP variables can be assigned a certain value (x=5) or an expression (z=x y).

Variables can have very short names (such as x and y) or more descriptive names (such as age, carname, totalvolume).

PHP variable rules:

Variables start with the $ symbol, followed by the name of the variable

The variable name must start with a letter or underscore character

Variable names can only contain alphanumeric characters and underscores (A-z, 0-9 and _)

Variable names cannot contain spaces

Variable names are case-sensitive ($y and $Y are two different variables)

lamp PHP statements and PHP variables are case-sensitive.

Create (declare) PHP variables

PHP has no command to declare variables.

A variable is created when you first assign a value to it:

Instance

<?php
$txt="Hello world!";
$x=5;
$y=10.5;
?>

Output:

Hello world!

In the execution of the above statement, The variable txt will hold the value Hello world!, and the variable x will hold the value 5.

Note: When you assign a text value to a variable, please add quotation marks around the text value.

The above is the detailed content of How to define php variables. For more information, please follow other related articles on the PHP Chinese website!

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

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function