Home php教程 php手册 PHP基本语法第二章

PHP基本语法第二章

Jun 13, 2016 am 10:43 AM
define echo php one two value Keywords Basic how definition constant number of grammar

一,如何定义一个常量

 

关键字:define 语法define('常量名','常量的值')

 

  $a=123;  define('I',$a);  echo I;  ?> 二,数组

 

1定义一个数组

 

关键字array 语法array(key=>value,key2=>value2,key3=>value3) key可以是整形或字符串,value可以是任意值

 

$arr=array('too'=>'bar',123=>true);  echo $arr['too'].'
';  echo $arr[123];  ?> 

 

 

 

打印数组的方法print_r 关键字:print_r 语法print_r(要打印数组名),主要用于调试

 

  header("Content-Type:text/html; charset=utf-8");  $stu=array('stu_no'=>'10010','stu_name'=>'老赵');  print_r($stu);  ?> 输出结果Array ( [stu_no] => 10010 [stu_name] => 老赵)

 

输出方法echo $数组名[key]

 

  header("Content-Type:text/html; charset=utf-8");  $stu=array('stu_no'=>'10010','stu_name'=>'老赵');  echo $stu['stu_no'].'
';  echo $stu['stu_name'];  ?> 输出结果

 

10010

老赵

 

另外一种定义数组的方法 直接输入value值key为从0起排列的整形

 

array('value','value2','value3','value4')

 

  header("Content-Type:text/html; charset=utf-8");  $stu=array('皮皮','乐乐','教皇','老赵');  print_r($stu);  ?> 输出结果为Array ( [0] => 皮皮[1] => 乐乐[2] => 教皇[3] => 老赵)

 

分别输出:

 

  header("Content-Type:text/html; charset=utf-8");  $stu=array('皮皮','乐乐','教皇','老赵');  echo $stu[0].'
';  echo $stu[1].'
';  echo $stu[2].'
';  echo $stu[3].'
';  ?> 输出结果

 

皮皮

乐乐

教皇

老赵

 

 

循环输出方法for语句 语法

 

for(循环条件) 例:$i=0;$i

 

{

 

echo $数组名[循环变量名]

 

}

 

  header("Content-Type:text/html; charset=utf-8");  $stu=array('皮皮','乐乐','教皇','老赵');  for ($i=0;$i';  }  ?> 输出结果

 

皮皮

乐乐

教皇

老赵

 

while循环 语法

 

$条件变量名=条件变量值

 

while(条件语句) 例子$i

 

{

 

$数组名[$条件变量名];

 

$条件变量++

 

}

 

  header("Content-Type:text/html; charset=utf-8");  $stu=array('皮皮','乐乐','教皇','老赵');  $i=0;  while ($i 输出结果 皮皮 乐乐 教皇 老赵

 

在数组末尾添加元素

 

语法$数组名=array[value,value1,value2,value3];

 

$数组名[]=要添加的value;

 

$数组名[]=要添加的value;

 

  header("Content-Type:text/html; charset=utf-8");  $stu=array('皮皮','乐乐','教皇','老赵');  $stu[]='浩民';  $stu[]='苏超';  $stu[]='吕腾';  for ($i=0;$i 输出结果 皮皮 乐乐 教皇 老赵 浩民 苏超 吕腾

 

创建一个范围的数组range和count取得数组里有多少元素的方法

 

语法$数组名=range(范围开始,范围结束)

 

          count($数组名)

 

  header("Content-Type:text/html; charset=utf-8");  $stu=range(1,12);   for ($i=0;$i 输出结果1 2 3 4 5 6 7 8 9 10 11 12

 

  header("Content-Type:text/html; charset=utf-8");  $stu=range('a','z');   for ($i=0;$i 输出结果a b c d e f g h i j k l m n o p q r s t u v w x y z

 

三 填充数组

 

array_pad

 

语法

 

array_pad($数组名,数组长度,填充默认值)

 

  header("Content-Type:text/html; charset=utf-8");  $stu=range('0','3');  $stu2=array_pad($stu,7,0);   for ($i=0;$i 输出结果0 1 2 3 0 0 0

 

五,在数组中删除和插入替换元素array_splice

 

array_splice接两个参数代表删除 接四个参数代表插入或替换(第三个参数为0的时候为插入,不为0时为替换)

 

删除语法array_splice($数组名,删除结束下标) 下标等于在这个Key之前的删除

 

  header("Content-Type:text/html; charset=utf-8");  $stu=range('0','12');  $stu2=array_splice($stu,5);   for ($i=0;$i 输出结果5 6 7 8 9 10 11 12

 

插入语法array_splice($被插入数组名,下标,0,$插入的新数组名) 下标为在这个下标到上一个之前插入新数组

 

  header("Content-Type:text/html; charset=utf-8");  $stu=range('0','12');  $stu2=array('a','b','c');  array_splice($stu,5,0,$stu2);   for ($i=0;$i 输出结果0 1 2 3 4 a b c 5 6 7 8 9 10 11 12

 

替换语法array_splice($被替换数组名,key,key2,$替换的新数组名) 下标1下标2结合在一起表示从下标key开始数下标key2个元素被新的数组替换

 

  header("Content-Type:text/html; charset=utf-8");  $stu=range('0','12');  $stu2=array('a','b','c');  array_splice($stu,3,6,$stu2);   for ($i=0;$i 输出结果为0 1 2 a b c 9 10 11 12

 

从3开始数6个元素被替换成a,b,c

 

 

 

本文出自 “PHP学习笔记” 博客

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 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
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)

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

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Top 10 Global Digital Virtual Currency Trading Platform Ranking (2025 Authoritative Ranking) Top 10 Global Digital Virtual Currency Trading Platform Ranking (2025 Authoritative Ranking) Mar 06, 2025 pm 04:36 PM

In 2025, global digital virtual currency trading platforms are fiercely competitive. This article authoritatively releases the top ten digital virtual currency trading platforms in the world in 2025 based on indicators such as transaction volume, security, and user experience. OKX ranks first with its strong technical strength and global operation strategy, and Binance follows closely with high liquidity and low fees. Platforms such as Gate.io, Coinbase, and Kraken are at the forefront with their respective advantages. The list covers trading platforms such as Huobi, KuCoin, Bitfinex, Crypto.com and Gemini, each with its own characteristics, but investment should be cautious. To choose a platform, you need to consider factors such as security, liquidity, fees, user experience, currency selection and regulatory compliance, and invest rationally

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Top 10 digital currency trading platforms The latest list of top 10 digital currency trading platforms Top 10 digital currency trading platforms The latest list of top 10 digital currency trading platforms Mar 17, 2025 pm 05:57 PM

Top 10 digital currency trading platforms: 1. OKX, 2. Binance, 3. Gate.io, 4. Huobi Global, 5. Kraken, 6. Coinbase, 7. KuCoin, 8. Bitfinex, 9. Crypto.com, 10. Gemini, these exchanges have their own characteristics, and users can choose the platform that suits them based on factors such as security, fees, currency selection, user interface and customer support.

Top 10 exchanges in the currency circle in 2025 latest digital currency app rankings Top 10 exchanges in the currency circle in 2025 latest digital currency app rankings Feb 27, 2025 pm 06:33 PM

Ranking of the top ten virtual currency trading platforms (latest in 2025): Binance: Global leader, high liquidity, and regulation has attracted attention. OKX: Large user base, supports multiple currencies, and provides leveraged trading. Gate.io: A senior exchange, with a variety of fiat currency payment methods, providing a variety of trading pairs and investment products. Bitget: Derivatives Exchange, high liquidity, low fees. Huobi: An old exchange that supports a variety of currencies and trading pairs. Coinbase: A well-known American exchange, strictly regulated. Phemex and so on.

Top 10 trading platforms for digital currency apps, regular currency speculation platform app recommendations Top 10 trading platforms for digital currency apps, regular currency speculation platform app recommendations Mar 07, 2025 pm 06:51 PM

This article recommends ten digital currency trading apps: 1. OKX; 2. Binance; 3. Gate.io; 4. Huobi Global; 5. Kraken; 6. Coinbase; 7. KuCoin; 8. Crypto.com; 9. Bitfinex; 10. Poloniex. When choosing a platform, you need to consider factors such as security, liquidity, transaction fees, currency selection, user interface, customer service support and regulatory compliance, and carefully evaluate risks and never blindly follow the trend.

See all articles