博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP5.3x被弃用的函数及代替方法
阅读量:6552 次
发布时间:2019-06-24

本文共 869 字,大约阅读时间需要 2 分钟。

今天阳光明媚,万里无云,小记一下php5.3x被弃用的部分函数及代替方法

下面列举了部分被弃用的函数:
call_user_method():(使用 call_user_func() 替代)
call_user_method_array(): (使用 call_user_func_array() 替代)
define_syslog_variables()
dl()
ereg()                            使用 preg_match() 替代
ereg_replace()                使用 preg_replace() 替代
eregi()                           使用 preg_match() 配合 'i' 修正符替代
eregi_replace()               使用 preg_replace() 配合 'i' 修正符替代
set_magic_quotes_runtime() 以及它的别名函数  magic_quotes_runtime()
session_register()          使用 $_SESSION 超全部变量替代
session_unregister()       使用 $_SESSION 超全部变量替代
session_is_registered()   使用 $_SESSION 超全部变量替代
set_socket_blocking()     使用 stream_set_blocking() 替代
split()                            使用 preg_split() 替代)
spliti()                           使用 preg_split() 配合 'i' 修正符替代)
sql_regcase()
mysql_db_query()          使用 mysql_select_db() 和  mysql_query() 替代
mysql_escape_string()    使用 mysql_real_escape_string() 替代
废弃以字符串传递区域设置名称使用 LC_* 系列常量替代
mktime() 的 is_dst 参数使用新的时区处理函数替代

转载于:https://www.cnblogs.com/afish/p/3927252.html

你可能感兴趣的文章
[linux] uptime 命令中关于平均负载的解释
查看>>
Algs4-1.4.25扔两个鸡蛋
查看>>
Algs4-2.4.22调优先队列的整数组大小
查看>>
设计模式之建造者
查看>>
模块化的JavaScript开发的优势在哪里
查看>>
上海某软件公司电话面试分享
查看>>
TCP 和 UDP 协议发送数据包的大小 (转载)
查看>>
用Alamofire进行网络请求的一段代码解析(一)
查看>>
elasticsearch的percolator操作
查看>>
windows 定时任务:schtasks,定时关闭网易云音乐
查看>>
在Python中怎么表达True
查看>>
C# Note17: 使用Ionic.Zip.dll实现解压缩文件
查看>>
Mina Basics 06-传输
查看>>
c 编译异常 switch 之a label can only be part of a statement and a declaration is not a statement...
查看>>
nullnullDataTable 排序
查看>>
Codeforces Ilya and Queries
查看>>
NEWS - InstallShield 2013发布
查看>>
Viewport
查看>>
〖Linux〗Debian 7.1.0 Wheezy使用ltib报错的解决办法
查看>>
〖Android〗(how-to) fix k860/k860i buletooth.
查看>>