search
Homephp教程php手册Summary of basic syntax knowledge points for getting started with PHP programming_php basics

1. what is php

php, or "php: hypertext preprocessor", is a widely used open source general scripting language, especially suitable for web development and can be embedded in html. its syntax leverages c, java, and perl and is easy to learn. the main goal of the language is to allow web developers to quickly write dynamically generated web pages, but php can be used for much more than that.

to put it simply, php is a scripting language that can do many things. ① server-side script ② command line script ③ writing desktop program

2. start php

(1) download the php interpreter. in fact, under win, the simplest software is wamp. download it and you will have everything...

(2) it seems that you still need it under win. the mscvr110.dll link library and the vc2012 runtime library can be installed

(3)ide, i shamelessly used phpstorm, i will make it up to you when i get rich, so...

user: newasp
license:
===== license begin =====
14617-12042010
00001xrvkhnpum!bd!vytgydcusnqt
mm!hzwogg"dprwxzcbwsy8t91o7mru
nvhtrbzv8o9mmolvtijchsse7i5jr!
===== license end ====

3. getting started

(1) simple output

<?php
/**
 * created by phpstorm.
 * user: lenovo
 * date: 2014/9/28
 * time: 14:51
 */
// 输出php详细信息
echo phpinfo();
 
//c:\php-5.6.1-win32-vc11-x86\php.exe d:\dizzy\php_test\index.php
//phpinfo()
//php version => 5.6.1
//
//system => windows nt lenovo-pc 6.1 build 7600 (windows 7 ultimate edition) i586
//build date => sep 24 2014 18:54:12
//compiler => msvc11 (visual c++ 2012)
//architecture => x86
//configure command => cscript /nologo configure.js "--enable-snapshot-build" "--disable-isapi" "--enable-debug-pack" "--without-mssql" "--without-pdo-mssql" "--without-pi3web" "--with-pdo-oci=c:\php-sdk\oracle\x86\instantclient_12_1\sdk,shared" "--with-oci8-12c=c:\php-sdk\oracle\x86\instantclient_12_1\sdk,shared" "--enable-object-out-dir=../obj/" "--enable-com-dotnet=shared" "--with-mcrypt=static" "--without-analyzer" "--with-pgo"
//server api => command line interface

(2) simple form processing

// 一个简单的html表单
<form action="action.php" method="post">
  <p>姓名: <input type="text" name="name" /></p>
  <p>年龄: <input type="text" name="age" /></p>
  <p><input type="submit" /></p>
</form>
 
// action.php 接收表单数据, 使用超全局变量
%_post["name"]
%_post["age"]
<?php echo htmlspecialchars($_post['name']); ?>
<?php echo (int)$_post['age']; ?>
// 这便是最简单的表单提交,及数据接收

4. basic grammar

(1) php tag

<?php
 
echo "hello world!";
 
// 当文件为纯php时,最好在末尾删除php结束标记
//?>

(2) separate from html

// 在一对开始和结束之外的内容,都会被php解释器忽略。也就是html标签和php代码混合的那种,跟jsp,asp一样...
<p>this is going to be ignored by php and displayed by the browser.</p>
<?php echo 'while this is going to be parsed.'; ?>
<p>this will also be ignored by php and displayed by the browser.</p>
 
// 使用条件,高级分离
<?php if ($expression == true): ?>
  this will show if the expression is true.
<?php else: ?>
  otherwise this will show.
<?php endif; ?>

(3) instruction separator, comment

php requires a delimiter to terminate the directive after each statement.

comments: // or /* ... */ however, */ will match the closest one, remember! remember!

5. type

php supports 8 primitive data types.

  • four scalar types: boolean (boolean), integer (integer), float (floating point, double), string (string)
  • two composite types: array (array), object (object)
  • two special types: resource (resource), null (no type)
<?php
$a_bool = true;  // a boolean
$a_str = "foo"; // a string
$a_str2 = 'foo'; // a string
$an_int = 12;   // an integer
 
echo gettype($a_bool); // prints out: boolean
echo gettype($a_str); // prints out: string
 
// if this is an integer, increment it by four
if (is_int($an_int)) {
  $an_int += 4;
}
 
// if $bool is a string, print it out
// (does not print out anything)
if (is_string($a_bool)) {
  echo "string: $a_bool";
}
?>

(1) boolean boolean type

can be true or false and is not case sensitive.

generally, if it is not 0, it is true.

(2) integer type

integers can be represented in decimal, hexadecimal, octal or binary. the octal number must be preceded by 0 (zero), the hexadecimal number must be preceded by 0x, and the binary number must be preceded by 0b.

if a given number exceeds the range of interger, it will be interpreted as float. the same operation result exceeds the range of integer, and the same is true.

php does not have an integer division operator, 1/2 will produce float 0.5. you can cast to integer or use round() for better rounding.

echo (int)2.9; // 输出 2
echo round(2.555, 2) // 输出 2.56

// 决不要将未知的分数强制转换为 integer,这样有时会导致不可预料的结果。
<?php
echo (int) ( (0.1+0.7) * 10 ); // 显示 7!
?>

(3) float floating point type (double)

floating point type, also called floating point number float, double precision double, real number real.

<?php
$a = 1.234;
$b = 1.2e3;
$c = 7e-10;
?>

(4) string character conversion

a string string is composed of a series of characters, where each character is equivalent to a byte. this means that php can only support 256 character sets and therefore does not support unicode.

the maximum string size can reach 2gb.

<?php
$a = 123;
echo '$a'; // 输出 $a
echo "$a"; // 输出 123, 转义字符 '\'
 
$str = <<<'eod'
example of string
spanning multiple lines
using nowdoc syntax.
eod;
 
?>

(5) array array

the array in php is actually an ordered sequence. mapping is a type that associates values ​​to keys.

since the values ​​of array elements can also be said to be other arrays, tree structures and multidimensional arrays are also allowed.

<?php
$array = array(
  "foo" => "bar",
  "bar" => "foo",
);
 
// 自php 5.4 起
$array = [
  "foo" => "bar",
  "bar" => "foo",
]
// key 可以是 integer 或 string 类型
// key 值为可选项, 如果未指定,则使用之前用过最大的integer键名加上1作为新键名
?>
 
// 要修改某个值,通过其键名给该单元赋一个新值。
// 要删除某个键值对,对其调用 unset() 函数。

when using unset(), please note that the array will not be re-indexed at this time. if you need to rebuild the index, you can use the array_values() function.

count the total number of arrays: use the count() function

(6) object

<?php
class foo{
  function do_foo(){
    echo "doing foo.";
  }
}
// 用 new 实例化一个类
$f = new foo;
$f->do_foo;

(7) resource resource type

resource resource is a special variable that holds a reference to an external resource. resources are created and used through specialized functions.

(8) null

the special null indicates that a variable has no value. the only possible value of type null is null.

variables that can be recognized as null: ① assigned to null ② not yet assigned ③ unset

(9) callback callback type

since php5.4, you can use the callable type to specify the callback type callback.

6. variables

variables in php are represented by a dollar sign $ followed by the variable name. case sensitive.

variables are always assigned by value by default.

<?php
 
$a = 1;
// 值传递赋值 
$b = $a
// 引用赋值
$c = &$a
 
// global 关键字
global ; $GLOBALS


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

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!