Home php教程 php手册 php中的注释、变量、数组、常量、函数应用介绍

php中的注释、变量、数组、常量、函数应用介绍

Jun 13, 2016 am 11:56 AM
php and introduce function the difference variable constant application quotation marks array Comment

php中单引号与双引号的区别?
1. 由下可看出,双引号的变量是解析并输出,而单引号的变量不解析。
2.单引号的解析速度比双引号的快
3. 对于单引号来说,只有两个转义 \',\\
4. 除了上述两个转义字符,其他都原样输出。
5. 对于双引号来说,可转义字符除\\,\',\"之外,还有\t, \r , \n 等
6.除了单引号和双引号用来声明字符串变量外,还有heredoc方式
程序代码
//$age = 22;
//$str1 = '他今年 $age 岁'; //''原样输出
//$str2 = "他今年 $age 岁"; //""要解析里面的变量 即输出22
//echo $str1,"
",$str2;
php中的注释
(一) 以//开始.
(二) 以#开始.
#这是shell单行注释风格
(三) 多行注释有一种以/*开始以 */结束
php中的注意事项
一. 在js中,一个语句如果单占一行的话,在行尾可以不加;号
二. 但是,在php加,必须每一行后面都要加分号
虽然在整个php的最后一句例外,但是强烈建议也加上
三 . 对于纯php页面,?>是可以不写的
而且,对于不直接运行,而是被别的页面所包含的文件,往往还推荐结束不加?>
这样包含的页面更快执行速度更快
php中的变量
1. php变量有8种
2. 整型、浮点型、布尔型、字符串型、NULL型、数组型、对象型、资源型
3. 在js中,声明变量用var 变量名[= 值],在php中声明变量,直接变量名=值;
4. 在php中变量命名规范
5. 变量的名字由“字母”、下划线、数字、组合而成。并且数字不能开头
6. 在php中变量前面有一个‘$'标记
7. echo 不是一个函数,是一种语法结构。
8. 可以把变量打印出来
9. 要打印多个变量时,用 ','隔开
10. 变量的传值
11. 引用传值 和 赋值传值
15. 字符串 类型
变量和常量
(一)常量
变量可以随时重新赋值
//$age = 22;
//$age = 23;
//echo "
",$age;
(二)变量和常量的区别?
1. 它们的声明方式不同
2. 而常量一旦声明,不能改变其值
define('PI',3.14);
PI =3.23;语法错误
echo "
",PI;
3. 变量可以销毁,而常量一旦主义也不能销毁
unset($age);
var_dump($age);
4.常量是不能注销的
unset(PI); //语法错误,不允许注销
echo PI;
5. 变量有其作用域,函数内部默认情况访问不到外部的变量,
而常量,一旦定义,无论是在全局定义,还是在函数内部主义。
在页面的任意位置都可以访问到。
(三) 变量与常量的命名规范
1.常量的命名规范,从语法角度和变量是一样的。
允许是字母、数字、下划线的组合,并且数字不能开头
2. 从习惯角度讲:一般常量用“大写”
//define('SF',342);
//echo SF; //最新的版本已经对常量名区分大小写
(四)常量的值允许是哪几种?
1. 只能把标量型(单一型)赋给常量;
2. 不能把复合型,如数组,对象赋给一常量。
3. 资源型 如果赋给常量,如引来一些不可预料的错误。
代码如下

复制代码 代码如下:


1 define('AGE',22);
2 define('HEI',343.234);
3 define('ROOT','D:/www');
4 define('LOCK',true);
5 define('NON',NULL);
6 echo AGE,HEI,ROOT;
7 var_dump(LOCK);
8 var_dump(NON);


php中的控制结构
(一)任何程序,都离不开,变量,表达式,控制结构
(二)在php里,else if可以连着写,在js里不允许,我们推荐规范的书写,即esle if 隔开。
(三)在php中,变量的作用域并不会像js一样,沿着作用域往外寻找
(四)在php,有一类特殊的变量,叫做超级全局变量。不管你的在函数中还是在类内部,也不管代码包装了多深
都能够访问到该变量。
php数组与js数组
(一)在js创建数组的两种方法
(二)在js中数组的索引永远是从0开始逐一递增,中间没有空档
1. var arr=new Array(1,2,3,4);
2. var arr= [1,2,3]
(三)在php中创建数组
1. 但是在php中,数组的索引是非常灵活的
2. 可以是数字,也可以是字符串
3. 甚至也可以是数字和字符串混合
4. 如果索引部分指定了数字索引
5. 又有某个单元没有指定索引
6. 则取该单元之前曾经出现的最大的数字索引值然后+1,作为其键值
php创建数组如下:

复制代码 代码如下:


$arr=array(1,2,3);
print_r($arr);
//===========================================
$arr=array(10=>'赵','adfdssd'=>'钱','孙','name'=>'张三丰');
print_r($arr);


7. 在php中,如何引用数组的单元值,关键靠索引
8. 而索引是数字索引
//echo $arr[10];
9. 如果是字符串索引,必须要求加单引号,如果不加单引号它先当着常量来处理
//define('name','adfdssd');
//echo $arr[name];
(四)关联数组与索引数组
1. 索引既可可能是纯数字,也可能是字符串,也有可能是字符串+数字混合
2. 如果索引是纯数字,就叫'索引数组';
3. 否则就叫"关联数组";
(五) php中的函数与js中的函数的不同之处
1. 在js中,可以多次声明同名函数
2.但是在一个php页面中,不能多次同名函数
3. 在js中,函数名区分大小写
4.在php中,函数名不区分大小写(类方法也不区分)
5. 在php中,调用函数时的参数个数必须与声明函数的参数一致
6. 在php的函数,函数声明时,某个参数可以有“默认值”
以上所有知识点的代码展示

复制代码 代码如下:


//================================================ 返回原处
//2. 整型、浮点型、布尔型、字符串型、NULL型
$age = 22;
$weight = 75.23;
$name ='张三';
$money = false;
$house = null; //相当于js中的undifined
echo $age,$weight,$money,
//================================================ 返回原处
//10. 变量的传值
$age =22;
$nian =$age;//把$age的值读取出来,赋给$nian
$nian= 24;
echo $nian,'----',$age;
//================================================
//11. 引用传值赋值传值
$money =10000;
$credit = &$money; //声明$credit变量,并把credit指针指向money的存储空间
$credit = 5000;
echo $credit,'--------',$money;
unset($credit);
echo $credit;
//================================================
//字符串 类型
$str1 = 'hello';
$str2 = "world";
echo $str1,$str2,"
";
//================================================
$age = 22;
function t(){
var_dump($age);
}
t();
define('HEI',88.63);
function s(){
var_dump(HEI);
}
s();
// 注:php中的函数不能重复声明,函数里的变量包得比较严,只不函数内起作用。不会跑到外面作用
//5.对于以上情况,用变量,常量都行,但是我们选择常量。
//理由:一是ROOt,被经常引用
//二是:如果用变量,$ROOT ='a';极有可能在多人开发过程中被改变值
//用常量也有不好的地方:
//常量一旦定义就不会被销毁
//常量始终点内在里,没法销毁。
//=====================================================
//在php中,变量名也是可变的。
$talk='hello';
$heat= 'kill you';
$love= 'love';
echo $love,"
";
$action = 'talk';
$t ='action';
echo $$$t;
//=====================================================
//提前预告:不仅变量名,函数名也是可变的,类名也是可变 的。
////常量名也要变一变
define('PI',3.14);
define('HEI',342);
$cons= 'PI';
echo $cons,"
";
echo constant($cons); //constant是把变量的值当成常量的名字,引用常量
//===================================================== 返回原处
//php中的控制结构
//任何程序,都离不开,变量,表达式,控制结构
if ,if/else,if/else if/ esle
$num=3;
if($num >2){
echo '在php里,3也大于2',"
";
}
if($num >5){
echo '3大于5',"
";
}else{
echo '3不大于5';
}
//
if($nun==1){
echo '今天是星期一';
}else if($num ==3){
echo '今天是星期三';
}else{
echo '非一非二非三';
}
////在php里,else if可以连着写,在js里不允许
//我们推荐规范的着写,即esle if 隔开。
//=====================================================
switch case 语句
$num = 3;
switch($num){
case 1:
echo '今天星期一',"
";
break;
case 2:
echo '今天星期二',"
";
break;
case 3:
echo '今天是星期三',"
";
break;
default:
echo '不知道';
break;
}
/*
假设某人有100,000现金,每经过一次路口需要进行一次资费。
资费规则为当他现金大于50000时,每经过一次路口时需要交5%现金,如果现金小于等于
等于50000时每次交5000,请写一程序计算此人可以经过多少次这个路口
*/
for ($m =100000,$num=0;$m>=5000;$num++){
if ($m>50000){
$m*=0.98;
}else{
$m-=5000;
}
}
//===========================================
//while ,do/while
//用while 打印$1-9;
$i =1;
while($iecho $i++,"
";
}
$i=0;
while(++$iecho $i,"
";
}
//===========================================
while(){}
$i=0;
while(++$iif($i==5){
break;
continue;
}
echo $i,"
";
}
////===========================================
//php里的超级全局变量
$num =99;
function t(){
echo $num;
//}
////在这个调用过程,$num为null,因为函数内部没有定义$num
////且在php中,并不会像js一样,沿着作用域往外寻找。
t();
///===========================================
//在php,有一类特殊的变量,叫做超级全局变量。
//不管你的在函数中还是在类内部,也不管代码包装了多深
//都能够访问到该变量。
function a(){
echo $_GET['title'];
}
a();
///===========================================
//想用php做留言本
//关于逻辑运算符
var age= 2||3;
alert(age);
var_dump($age);
//在php中,逻辑运算返回true/false
$age = 2||3;
var_dump($age);
$a = 3;
$b= 2;
if($a=9 || $b=1){
$a +=1;
$b +=1;
}
echo $a,"
",$b;
//php中的函数与js中的函数的不同之处
//1. 在js中,可以多次声明同名函数
//但是在一个php页面中,不能多次同名函数
//2. 在js中,函数名区分大小写
//在php中,函数名不区分大小写(类方法也不区分)
///=========================================== 返回
//3. 在php中,调用函数时的参数个数必须与声明函数的参数一致
$a = 1;
$b = 2;
$c = 3;
function t($a,$b,$c){
echo $a+$b+$c;
}
t(1,2,3);
t(1,2);
///===========================================
//4. 在php的函数,函数声明时,某个参数可以有“默认值”
function t($a,$b,$c=0){
echo $a+$b+$c;
}
t(1,2);
?>

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)

Why is Bittensor said to be the 'bitcoin' in the AI ​​track? Why is Bittensor said to be the 'bitcoin' in the AI ​​track? Mar 04, 2025 pm 04:06 PM

Original title: Bittensor=AIBitcoin? Original author: S4mmyEth, Decentralized AI Research Original translation: zhouzhou, BlockBeats Editor's note: This article discusses Bittensor, a decentralized AI platform, hoping to break the monopoly of centralized AI companies through blockchain technology and promote an open and collaborative AI ecosystem. Bittensor adopts a subnet model that allows the emergence of different AI solutions and inspires innovation through TAO tokens. Although the AI ​​market is mature, Bittensor faces competitive risks and may be subject to other open source

Is there any difference between South Korean Bitcoin and domestic Bitcoin? Is there any difference between South Korean Bitcoin and domestic Bitcoin? Mar 05, 2025 pm 06:51 PM

The Bitcoin investment boom continues to heat up. As the world's first decentralized digital asset, Bitcoin has attracted much attention on its decentralization and global liquidity. Although China was once the largest market for Bitcoin, policy impacts have led to transaction restrictions. Today, South Korea has become one of the major Bitcoin markets in the world, causing investors to question the differences between it and its domestic Bitcoin. This article will conduct in-depth analysis of the differences between the Bitcoin markets of the two countries. Analysis of the differences between South Korea and China Bitcoin markets. The main differences between South Korea and China’s Bitcoin markets are reflected in prices, market supply and demand, exchange rates, regulatory supervision, market liquidity and trading platforms. Price difference: South Korea’s Bitcoin price is usually higher than China, and this phenomenon is called “Kimchi Premium.” For example, in late October 2024, the price of Bitcoin in South Korea was once

Vertical proxy: Application scenarios and interpretation of disruptive potential of encryption native proxy Vertical proxy: Application scenarios and interpretation of disruptive potential of encryption native proxy Mar 04, 2025 am 10:21 AM

Artificial intelligence agents (AIAgents) are rapidly integrating into daily operations of enterprises, from large companies to small businesses, almost all areas have begun to be used, including sales, marketing, finance, law, IT, project management, logistics, customer service and workflow automation. We are moving from an era of manual processing of data, performing repetitive tasks, and using Excel tables to an era of autonomous operation by AI agents around the clock, which not only improves efficiency but also significantly reduces costs. Application case of AI agents in Web2: YCombinator's Perspective Apten: A sales and marketing optimization tool combining AI and SMS technology. BildAI: A model that can read architectural blueprints,

What exchange is Nexo? Is Nexo exchange safe? What exchange is Nexo? Is Nexo exchange safe? Mar 05, 2025 pm 07:39 PM

Nexo: Not only is it a cryptocurrency exchange, but also your digital financial manager. Nexo is not a traditional cryptocurrency exchange, but a financial platform that focuses more on cryptocurrency lending. It allows users to obtain loans in cryptocurrency as collateral and provides services to earn interest. While Nexo also offers cryptocurrency buying, selling and redemption capabilities, its core business is crypto lending. This article will explore the operating model and security of Nexo in depth to provide investors with a more comprehensive understanding. Nexo's operating model was founded in 2018 and is headquartered in Zug, Switzerland, and is a pioneer in the field of digital finance. It is different from other centralized exchanges and focuses more on providing comprehensive financial services. Users can buy, sell, trade cryptocurrencies without selling assets and

The difference between Ether and Bitcoin What is the difference between Ether and Bitcoin The difference between Ether and Bitcoin What is the difference between Ether and Bitcoin Mar 19, 2025 pm 04:54 PM

The difference between Ethereum and Bitcoin is significant. Technically, Bitcoin uses PoW, and Ether has shifted from PoW to PoS. Trading speed is slow for Bitcoin and Ethereum is fast. In application scenarios, Bitcoin focuses on payment storage, while Ether supports smart contracts and DApps. In terms of issuance, the total amount of Bitcoin is 21 million, and there is no fixed total amount of Ether coins. Each security challenge is available. In terms of market value, Bitcoin ranks first, and the price fluctuations of both are large, but due to different characteristics, the price trend of Ethereum is unique.

What does closing a virtual currency position mean? Same as selling? How to avoid forced closing of positions? What does closing a virtual currency position mean? Same as selling? How to avoid forced closing of positions? Mar 04, 2025 am 06:51 AM

Detailed explanation of closing positions in virtual currency trading: Strategies to avoid the risk of liquidation. This article will deeply explore the concept of "closing positions" in the virtual currency market, and clarify the difference between it and "sell", and how to effectively avoid the risk of forced liquidation (filtering positions). What is virtual currency closing? Close positions refers to investors ending existing positions through reverse trading, thereby locking in profits and losses. For example, investors holding long positions (buy) can close their positions by selling equal amounts of virtual currency; investors holding short positions (sell) need to buy equal amounts of virtual currency to close their positions. A closing operation is essentially closing or releasing an established investment position. Is closing a position equal to selling? Although long closing does involve selling operations, closing and selling are not exactly the same. Close position definition: End opened

How many times is the U standard 2 times equivalent to the U standard? What is the difference between U standard and currency standard? How many times is the U standard 2 times equivalent to the U standard? What is the difference between U standard and currency standard? Mar 04, 2025 am 07:48 AM

Coin Standard and U-Material Perpetual Contract: Conversion and risk analysis of leverage multiples. The pricing methods of perpetual contracts are mainly divided into two types: coin Standard and U-Material. The currency standard contract is settled in the transaction cryptocurrency (such as BTC, ETH), with the goal of obtaining more of the cryptocurrency; the U standard contract is settled in the stablecoin (such as USDT), with the goal of earning more stablecoins, similar to the traditional gold standard system. Many investors are curious: How many times the leverage at the currency standard is equivalent to the U standard? To put it simply, the conversion between the 2x leverage of the currency standard and the leverage of the U standard is roughly equivalent to the 2x leverage of the U standard. However, this equivalence relationship is not absolute, as currency price fluctuations significantly affect the actual leverage effect. The risk of currency standard leverage will fluctuate with the currency price

What is the difference between the old version of Sesame Open Door Gate and the new version? What is the difference between the old version of Sesame Open Door Gate and the new version? Mar 04, 2025 pm 01:33 PM

The article introduces the difference between the old version of the Sesame Open Door gate.io trading platform and the new version. In terms of interface design, the new version has optimized layout and more modern and simple visual style; in terms of functional experience, transaction functions are upgraded, user experience is optimized, and new functions are added; in terms of security performance, the new version of security mechanism is upgraded, and compliance is improved. However, the actual differences need to be determined by the specific update content of the platform.

See all articles