Home > php教程 > php手册 > php中用中文做变量名

php中用中文做变量名

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 19:50:46
Original
3482 people have browsed it

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 php中用中文做变量名: 在php中其他语言也是如此,一般我们定义变量都是以字母,数字,下划线组成的,但是在PHP下中文也可以作为变量的一部分,下面简单介绍一下: PHP中一个有效的变量名由字母或者下划线开

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

    php中用中文做变量名:

    在php中其他语言也是如此,一般我们定义变量都是以字母,数字,下划线组成的,但是在PHP下中文也可以作为变量的一部分,下面简单介绍一下:

    PHP中一个有效的变量名由字母或者下划线开头,后面跟上任意数量的字母,数字,或者下划线.按照正常的正则表达式,它将被表述为:'[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*'.

    注: 在此所说的字母是 a-z,A-Z,以及 ASCII 字符从 127 到 255(0x7f-0xff).

   

    $var = 'Bob';

    $Var = 'Joe';

    echo “$var, $Var”; // 输出 “Bob, Joe”

    $4site = 'not yet'; // 非法变更名;以数字开头

    $_4site = 'not yet'; // 合法变量名;以下划线开头

    $php自学网is = 'mansikka2'; // 合法变量名;可以用中文

    ?>

php中用中文做变量名

source: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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template