Home  >  Article  >  Backend Development  >  How to dynamically create a Web site with PHP_PHP tutorial

How to dynamically create a Web site with PHP_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:25:03754browse

PHP has 4 functions for using external functions: include(), include_once(), require() and require_once().
In order to use them, the following lines of code will be included in the PHP script:
include_once(' arr.php');
require('/path/to/filename.html');
The difference between two types of external functions:
It is exactly the same to use, but it will be different when an error occurs : If the include() function does not work, a script will be printed to the web browser, but the script will continue to run. If require() fails, an error will be printed and the script will terminate.
There is also a *_once() version of these two functions, which guarantees that the file being considered will only be included once, regardless of how many times the script may try to include it.
eg:

Copy code The code is as follows:


require('arr1.php');
include('arrsort.php');
?>

Use PHP's binding ability to process HTML forms

require('arr1.php'); //Include the file to be executed first
if(isset($_POST['name'])) //Determine whether to enter, and then execute..
{
$name=$_POST['name'];
echo "$name";
}
?>


黏性表单
预先设置文本框中输入的内容:

让PHP预先设置该值:
;
函数
函数名和变量的命名规则相同,但是函数名不区分大小写。例如:function name() 和function Name()是两个完全相同的函数。
时期和时间函数
date('format',[timestamp]);
依据指定的格式返回某一日期和时间的文本字符串。timestamp是一个可选项,表示正在考虑的日期从Unix Epoch(Unix时间戳,1970年1月1日0点)起所经过的秒数。它允许你获得关于特定日期的信息,如星期几。如果未指定时间戳,PHP就会使用服务器上的当前时间。

字符

含义

示例

Y

4位数字表示年

2005

y

2位数字表示年

05

n

1位或2位数字表示月份

2

m

2位数字表示月份

02

F

月份

February

M

3个字母表示月份

Feb

j

1位或2位表示一月中的某一天

8

d

2位数字表示一月中的某一天

08

l

星期几

Monday

D

用三个字母表示星期几

Mon

g

小时,用1位或2位数字表示的12小时格式

6

G

小时,用1位或2位数字表示的24位小时格式

18

h

小时,用2位数字表示的12小时格式

06

H

小时,用2位数字表示的24小时格式

18

i

45

s

18

a

ampm

am

A

AMPM

AM

可以使用mktime()函数找出特定日期的时间戳。
$stamp=mktime(hour,minute,second,month,day,year);
可以使用getdate()函数返回日期和时间的一组值:
$dates=getdate();
echo $dates['month'];

示例

year

2005

mon

12

month

月份名称

December

mday

一月中的某一天

25

weekday

星期几

Tuesday

hours

小时数

11

minutes

分钟数

56

seconds

秒数

47

eg:
复制代码 代码如下:


function md($m=NULL,$d=NULL,$y=NULL)
{
$months=array(1=>'January','February','March','April','May','June','July','Augst','September','October','November','December');
echo '';
echo '';
echo '';
}
echo '

select a date:


';
$dates=getdate();
md($dates['mon'],$dates['mday'],$dates['year']);
echo '


';
echo '

Today is'.date('l').'. The current time is'.date('H:i a').'.

';
?>


格式化日期函数:
DATE_FORMAT('2005-05-20',%M,%d,%Y);
技巧总结
PHP的日期函数反映了服务器上的事件(因为PHP运行在服务器上);如果想确定客户计算机上的日期和时间,则需要使用javascript;
checkdate()函数带3个参数——月份、天和年份——并检查它是否是一个有效的日期(现在或过去实际存在的日期)。
发送电子邮件
mail($to,$subject,$body);
$to值应该是一个电子邮件地址或一系列地址,中间用逗号隔开。
$subject值将创建电子邮件的主题行,
$body可用于在其中设置电子邮件的内容。
在创建电子邮件正文时,可以在双引号内使用换行符(n),使文本分布在多行上。
$mail()函数带有四个可选参数,用于额外的电子邮件头部。在此可以设置From(发件人)、Reply-To(回复)、Cc(抄送)、Bcc(密件抄送)以及类似的设置。
eg:
mail('fanchangfa@126.com','Question regardingScript 3.13',$body,'From:killman@hotmail.com');
要在电子邮件中使用多个不同类型的头部,可以用rn把他们隔开:
$headers="From:John@hotmail.comrn";
$headers.="Cc:jane@hotmail.com,joe@hotmail.comrn";
mail('fanchangfa@126.com','Question','$body,$headers');

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/324151.htmlTechArticlePHP有4个用于使用外部函数的函数:include()、include_once()、require()和require_once(). 为了使用它们,PHP脚本中将包括如下代码行: include_once('arr...
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