[PHP]实用函数6_php技巧

PHP中文网
Release: 2016-05-17 09:38:56
Original
758 people have browsed it

//寄出电子邮件到指定的邮件地址 to,subject 表示主题,message 为信件内容。额外的选项 additional_headers 可省略,表示其他邮件文档首部

bool mail(string to,string subject,string message,string [additional——headers]
//将 URL 字符串予以解析,并将结果返回数组中。返回的数组包括下列元素:scheme、host、port、path、query 与 fragment 等

array parse_url(string url)
//将字符串以 URL 编码,例如空格就会变成加号。网页中表单数据传送就是用 urlencode 编码后再送出

string urlencode(string str)
//将 URL 编码后字符串还原

string urldecode(string str)
//可打开 FTP 服务器的链接。参数 host 为 FTP 服务器的网址。参数 port 通常省略,若 FTP 服务器的端口号(port)不是21时才需要加本参数。若无错误则返回连接代码,失败则返回 false

int ftp_connect(string host,int [port])
//可登入链接的 FTP 服务器。参数 ftp_stream 和 password 为 FTP 服务器的使用者帐号及密码,通常 anonymous 为公开的使用帐号,密码则为某个电子邮件地址。成功则返回 true

bool ftp_login(int ftp_stream,string username,string password)
//用来取得目前在 FTP 服务器中的路径。参数 ftp_stream 为 FTP 的连接代码。若有错误则返回 NULL

string ftp_pwd(int ftp_stream)
//用来回到上层目录,也就是目前目录的父目录。参数 ftp_stream 为 FTP 连接代码。成功则返回 true

boolean ftp_cdup(int ftp_stream)
//用来前往下一层目录。参数 ftp_stream 为 FTP 的连接代码。参数 directory 为欲前往的目录。成功返回 true,失败则返回 false

bool ftp_chdir(int ftp_stream,string directory)
//返回给定目录的文件名或数组

array ftp_nlist(int ftp_stream,string directory)
//按输出行数组的方式返回某个目录的详细清单

array ftp_rawlist(int ftp_stream,string directory)
//可显示远端 FTP 服务器的系统,也就是等于对 FTP 服务器下 system 或 syst 指令。成功则返回字符串,如“215 UNIX Type: L8”,失败则返回 false

string ftp_systype(int ftp_stream)
//用来下载指定的文件。参数 ftp_stream 为 FTP 的连接代码;参数 local_file 为欲存在本地端的文件名;参数 remote_file 为欲下载的文件名;参数 mode 的值有 FTP_ASCII 及 FTP_BINARY 二种,分别表示文本文件或者是二进制文件,成功则返回 true,失败则返回 false

bool ftp_get(int ftp_stream,string local_file,string remote_file,int mode)
//下载文件,并存在已打开的本地文件中。参数 fp 为本地端的已打开文件的文件指针

bool ftp_fget(int ftp_stream,int fp,string remote_file,int mode)
//用来上传指定的文件。参数 ftp_stream 为 FTP 的连接代码;参数 remote_file 为欲存在远端的文件名;参数 local_file 为欲上传的文件名;参数 mode 的值有 FTP_ASCII 及 FTP_BINARY 二种

bool ftp_put(int ftp_stream,string remote_file,string local_file,int mode)
//向 FTP 主机发送 cmd 命令,该命令不是标准化,而是与服务器的主机操作系统有关,可用于文件的访问许可、组成员的操作

bool ftp_site(resource ftp_stream,string cmd)
//关闭 FTP 连接

bool ftp_quit(int ftp_stream)
//可传回某个IP网址的主机域名。若执行失败,则传回原来的IP网址

string gethostbyaddr(string ip_address)
//可传回某个网络主机的IP网址。若执行失败,则传回原来的计算机域名hostname

string gethostbyname(string hostname)
//返回给定主机的IP地址列表

array gethostbynamel(string hostname)
//检查给定的因特网主机名或IP地址是否存在DNS记录,type 可以是 A、MX、NS、SOA、TPR、CNAME 或 ANY,默认类型为 MX

int checkdnsrr(string host [,stringtype])
//获得相应于给定因特网主机名的 MX 记录

int getmxrr(string hostname,array mxhosts [,array weight])
//可创建 Session 或恢复当前的 Session

bool session_start(void)
//结束 Session

bool session_destroy(void)
//获取或修改当前 Session 名

string session_name(string [name])
//获取或修改当前 Session 模块名

string session_module_name(string [module])
//可取得或重新配置目前存放 Session 的路径。若无参数 path 则表示只取得目前 Session 的路径目录名,加上参数 path 则表示将 Session 存在新的 path 上

string session_save_path(string [path])
//可取得或者重新配置目前存放 Session 的代号。若无参数 id 则表示只取得目前 Session 的代号,加上参数则表示将 Session 代号设成新指定的 id

string session_id(string [id])
//从全局变量中增加一个变量到目前的 Session 之中。参数 name 即为欲加入的变量名,成功则返回 true

bool session_register(string name)
//在目前的 Session 之中删除全局变量中的变量 name

boolean session_unregister(string name)
//检查目前的 Session 之中是否已有指定的变量注册

boolean session_is_registered(string name)
//将当前的 Session 设置串行化编码并返回串行化后的表示方式

string session_encode(void)
//可将 Session 数据解码。参数 data 即为欲解码数据,成功则返回 true

bool session_decode(string data)
//设置用户级 Session 存储功能,一般可将 Session 数据存储在本地主机数据库中

void session_set_save_handler(string open,string close,string read,string write,string destroy,string gc)
//取消 Session 中所有注册变量的设置

void session_unset(void)
//首部(header)是Web页服务器以HTTP消息传送HTML文档到浏览器之前所发出的字符串,在首部与HTML文件之间尚空一行分隔

int header(string string)
//发送一个Cookie作为HTTP消息首部(header)的一个组成部分,参数 name 表示 Cookie 的名称;value 表示该 Cookie 的值,该参数为空字符串则表示取消浏览器中该 Cookie 的数据;expire 表示该 Cookie 的有效时间;path 为该 Cookie 的相关路径;domain 表示 Cookie 的网站;secure 则需在 https 的安全传输时才有效

int setcookie(string name [,string value[,int expire [,string path [,string domain [,int secure]]]]])
//如果已经发送了首部,则返回 true,否则返回 false

bool headers_sent(void)
//把特殊字符(与号&、双引号、单引号、小于号和大于号)转化成HTML实体

string htmlspecialchars(string string)
//把 string 中的所有字符转化成 HTML 实体

string htmlentities(string string)
//返回 htmlspecialchars() 和 htmlentities() 使用的内部转换表

string get_html_translation_table(int table [,int quote_style])

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template