Home php教程 php手册 坏狼的PHP学习教程之第3天第1/2页

坏狼的PHP学习教程之第3天第1/2页

Jun 13, 2016 pm 12:28 PM
php superior code copy Study tutorial number of Add

今天更上1层楼了...先写1个:(数字相加的) 

 

复制代码 代码如下:


 $a = "10";  //将右边"连"到左边 
 $a += "2";  //将右边"加"到左边 
 echo $a."
\n";  //这里结果是12,大概意思就是,$a等于10了,然后又把2加到左边(就是$a了),所以就是12了. 
  ?> 


我看来php写法很注重行的概念,不管$a代表什么,大概意思都是右边到左边."连到"或"加到"或"减到"等,!不只是数字之间的加连。还可以其他方式.
再写1个:(右连到左内容的) 

 

复制代码 代码如下:


    $b = "坏狼";    
   $b .= "大好人!";   
   $b .= "大好人!"; 
   echo $b."呵呵!\n"; //显示最终内容! 
  ?> 



结果为什么这样显示呢?如果你每次都认真听的话,前段会说:程序的跑法是从上到下,从右到左的原则.


再写1个:(除法的) 

  
 

复制代码 代码如下:


 $a = "65896255618562314793123219";  //在这里复杂的下计算,原来php处理这里简单! 
 $a /= "465342233234234"; //让这2个数字相乘! 
 echo $a."←这是结果!65896255618562314793123219除以465342233234234,哇一般人算术没我快!呵呵@!\n"     
 ?> 



得到结果141608156132,算的速度还真快,呵呵......

继续下1大步骤:
1.位元的运算(这个很少用)
& 代表且(and)
| 代表或(or)
^ 代表互斥(Xor)
>> 向右移位
~ 取1的辅数
2.逻辑运算(条件等)
>  代表大于
>= 大于或等于
== 等于  (一般检查例如用户的登陆等于不等于条件)
!= 不等于
&& and 而且 (and)
|| or 或者(or)
xor 互斥(Xor)
! 不(Not)
其他符号
3.其他运算
$ 变数(用到很多次了)
& 变数的指标(加在变数前)
@ 不显示错误信息(加在函数前)     
      例子

复制代码 代码如下:


    @include("dbx.txt");  //如果dbx.txt不存在会报告错误,但加@之后就不显示了! 
   echo "
\n"; 
   ?> 



-> 物件的方法或者属性
=> 阵列的元素值
?: 三远运算子


上边的记住就可以了,(但是记住也不是那么容易地,呵呵!)
下边介绍更高层的了,也是写程序比较常用关键的!

1.单行的if(判断)
if...else... 
如果...什么什么...结果怎样...负责...怎样...
如果...你胖...你是小猪...否则...你是瘦猴子.
if(conditon) { statment1}    true  真 
else {statment2}             false 假
例子:

  $a = 4.998;
  if($a > 5)    //这里不需要加分号,注意!
    {
    echo "对了!a > 5\n";
    }
    else       //这里不需要加分号,注意!
    {
    echo "错了!a     }   
?>

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)

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

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

CakePHP Quick Guide CakePHP Quick Guide Sep 10, 2024 pm 05:27 PM

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.

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

See all articles