search
php study notes (1)Aug 08, 2016 am 09:19 AM
echofalseincludephprequire

1. There are two ways to reference files: require and include

 The use of require is such as require("MyRequireFile.php");. This function is usually placed at the front of the PHP program. Before the PHP program is executed, it will first read in the file specified by require and make it a part of the PHP program web page. Commonly used functions can also be introduced into web pages in this way.

 The usage method of include is as follows: include("MyIncludeFile.php");. This function is generally placed in the processing part of flow control. The PHP program webpage only reads the include file when it reads it. In this way, the process of program execution can be simplified.

2. Comments

<span>php
    </span><span>echo</span> "这是第一种例子。\n"; <span>//</span><span> 本例是 C++ 语法的注释</span><span>/*</span><span> 本例采用多行的
       注释方式      </span><span>*/</span><span>echo</span> "这是第两种例子。\n"<span>;
    </span><span>echo</span> "这是第三种例子。\n"; <span>#</span><span> 本例使用 UNIX Shell 语法注释</span>  ?>

Comments: The information explained is what and why.

3. Constant type

  PHP defines the following constants in constants.

 __FILE__
 This default constant is the PHP program file name. If a file is referenced (include or require), the constant in the referenced file is the referenced file name, not the file name that refers to it.

 __LINE__
 This default constant is the number of PHP program lines. If a file is referenced (include or require), the constant in the referenced file is the line that refers to the file, not the file line that references it.

 PHP_VERSION
 This built-in constant is the version of the PHP program, such as '3.0.8-dev'.

 PHP_OS
 This built-in constant refers to the name of the operating system that executes the PHP parser, such as 'Linux'.

 TRUE
 This constant is the truth value (true).

  FALSE
 This constant is the false value (false).

  E_ERROR
 This constant points to the most recent error.

  E_WARNING
  This constant points to the nearest warning.

  E_PARSE
 This routine is a potential problem in parsing grammar.

  E_NOTICE
 This routine means something unusual occurs but it is not necessarily an error. For example, access a variable that does not exist.

 For these constants starting with E_, you can refer to the error_reporting() function for more related instructions.

Of course, when writing programs, the above default constants are not enough. The define() function allows us to define the constants we need. See the example below

<span>php
    </span><span>define</span>("COPYRIGHT", "Copyright © 2000, netleader.126.com"<span>);
    </span><span>echo</span><span> COPYRIGHT;  

    </span><span>echo</span><span>__FILE__</span><span>;  

  </span>?>

4. Declare variables (case sensitive)

<span>php
 </span><span>/*</span><span>*
 * @file variable.php
 * @author suguolong
 * @date 2015/07/29 16:49:08
 * @brief 
 *  
 *</span><span>*/</span><span>/*</span><span> 定义字符串变量 </span><span>*/</span><span>$mystring</span> = "我是字符串"<span>;
</span><span>$WilsonPeng</span> = "真是认真的作者"<span>;
</span><span>$NewLine</span> = "换行了\n"<span>;

</span><span>/*</span><span> 定义整型变量 </span><span>*/</span><span>$int1</span> = 38<span>;
</span><span>$int2</span> = 49<span>;
</span><span>$hexint</span> = 0x10<span>;

</span><span>/*</span><span> 定义浮点变量 </span><span>*/</span><span>$float1</span> = 1.732<span>;
</span><span>$float2</span> = 1.4E+2<span>;

</span><span>/*</span><span> 定义数组变量 </span><span>*/</span><span>$MyArray1</span> = <span>array</span>("子", "丑", "寅", "卯"<span>);
</span><span>$MyArray2</span> = <span>array</span><span>(
              </span>"地支" => <span>array</span>("子", "丑", "寅", "卯"),
              "生肖" => <span>array</span>("鼠", "牛", "虎", "兔"),
              "数字" => <span>array</span>(1, 2, 3, 4<span>)
            );

</span><span>/*</span><span> 类的定义 </span><span>*/</span><span>class</span><span> foo {
  </span><span>function</span><span> do_foo () { 
    </span><span>echo</span> "Doing foo.\n"<span>; 
  }
}

</span><span>/*</span><span> 类的使用 </span><span>*/</span><span>$bar</span> = <span>new</span><span> foo;
</span><span>$bar</span> -><span> do_foo ();
</span><span>$bar</span> -><span> do_foo ();
</span><span>$bar</span> -><span> do_foo ();

</span><span>/*</span><span> 定义布尔值 </span><span>*/</span><span>$booleanval_true</span> = <span>true</span><span>;
</span><span>$booleanval_false</span> = <span>false</span><span>;

</span><span>/*</span><span> 使用变量 </span><span>*/</span><span>echo</span> "boolean value of true: \n"<span>;
</span><span>echo</span><span>$booleanval_true</span><span>;
</span><span>echo</span> "\n"<span>;

</span><span>echo</span> "boolean value of false: \n"<span>;
</span><span>echo</span><span>$booleanval_false</span><span>;
</span><span>echo</span> "\n"<span>;


</span><span>/*</span><span> vim: set expandtab ts=4 sw=4 sts=4 tw=100: </span><span>*/</span>?>

[suguolong@cp01-rdqa-dev004.cp01.baidu.com sugl]$ php variable.php 
Doing foo.
Doing foo.
Doing foo.
boolean value of true: 
1
boolean value of false: 

[suguolong@cp01-rdqa-dev004.cp01.baidu.com sugl]$ 

5. Use of variables

When the PHP program is executed, the system will retain a global variable in the memory Area. In actual use, you can retrieve the required variables through $GLOBALS["Variable Name"].

 The $GLOBALS array is a special variable in the PHP program. It does not need to be defined. The system will automatically match related variables in it. In the function, you don’t need to worry about whether the $GLOBALS array has been globally defined, you can use it directly.

  Similar to the $GLOBALS variable, there is the $php_errormsg string variable. If the track_errors option in the PHP configuration file (php.ini/php3.ini) is turned on, there will be a global variable $php_errormsg where you can see the error information.

 In PHP, the effective scope of global variables is limited to the main program and will not affect variables with the same name in functions, that is, global variables and local variables do not infringe each other. If you want variables to penetrate into functions, you need to use the $GLOBALS array or use global definitions.

 As for the information entered by the user in FORM, how to process it? It would be nice if in the PHP configuration file, when track_vars is set to On, the variable name is used directly. As shown in the following example, when next.php is executed, the system will automatically generate two variables $username and $sex, which can be used directly. Compared with traditional CGI, which has to be parsed by itself, PHP is really amazing.


next.php method=post>姓名:
性别:

The above introduces the PHP learning notes (1), including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

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

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use