PHP 弱类型语言,大小写敏感,脚本语言(解释性,文本文件执行),服务端。
OOP [Object Oriented Programming]
SAPI [Server Application Programming Interface ]服务器端应用编程端口。它就是PHP与其它应用交互的接口
timestamp[时间戳]通常是一个字符序列,唯一地标识某一刻的时间。数字时间戳技术是数字签名技术一种变种的应用。
CGI[Common Gateway Interface]通用网关接口,连接网页与WEB服务器中的执行程序。SAPI的一种。
Regex[Regular Expression]正则表达式:
SAPI
服务器端应用编程端口。它就是PHP与其它应用交互的接口,PHP脚本要执行有很多种方式,通过Web服务器,或者直接在命令行下,也可以嵌入在其他程序中。
SAPI提供了一个和外部通信的接口,常见的SAPI有:cgi 、fast-cgi、cli、isapi、apache 模块的 DLL【php mcrypt】Mcrypt扩展库可以实现加密解密功能,就是既能将明文加密,也可以密文还原。
This is an interface to the mcrypt library, which supports a wide variety of block algorithms such as DES, TripleDES, Blowfish (default), 3-WAY, SAFER-SK64, SAFER-SK128, TWOFISH, TEA, RC2 and GOST in CBC, OFB, CFB and ECB cipher modes. Additionally, it supports RC6 and IDEA which are considered "non-free". CFB/OFB are 8bit by default.
Mcrypt库支持20多种加密算法和8种加密模式,具体可以通过函数mcrypt_list_algorithms()和mcrypt_list_modes()来显示
【hash函数】简单的说就是一种将任意长度的消息压缩到某一固定长度的消息摘要的函数。
【phar 】The phar extension provides a way to put entire PHP applications into a single file called a "phar" (PHP Archive) for easy distribution and installation.