腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
工具
TVP
最新优惠活动
文章/答案/技术大牛
搜索
搜索
关闭
发布
精选内容/技术社群/优惠产品,
尽在小程序
立即前往
文章
问答
(870)
视频
沙龙
5
回答
如何在PHP Regex类中使用方括号?
、
我使用
eregi
。测试:echo("<br>");echo("<br&g
浏览 0
提问于2010-02-15
得票数 1
回答已采纳
2
回答
正则表达式:将php代码从
eregi
转换为preg_match
、
、
我正在尝试找到正确的正则表达式来将
eregi
($1,$2)转换为preg_match("/$1/i",$2) 我需要考虑其中是否会有带()的函数,并且它们可能会出现多次。
浏览 3
提问于2009-12-19
得票数 1
回答已采纳
8
回答
PHP中
eregi
()的良好替代方案
、
eregi
('.php', $fileName)) {} 但由于在PHP5.3中已被弃用,因此代码现在会抛出错误。是否有其他函数的行为方式与
eregi
()完全相同?我对正则表达式一无所知,也不想学习,所以preg_match()等不适合我。
浏览 4
提问于2009-04-10
得票数 12
回答已采纳
1
回答
eregi
_replace到preg_replace的转换
、
我已经升级了我的php,现在我收到了
eregi
_replace的警告信息$text =
eregi
_replace('<a href=?([^ "\']*)>([^<]*)</a>', '<a href="\\1">\\2<
浏览 3
提问于2010-08-16
得票数 1
回答已采纳
1
回答
用于防止PHP中注入的preg_match
、
、
、
我已经阅读了很多教程,并制作了一个应该验证的表单,但它不起作用……在这里研究了一下之后,我的问题似乎是我的代码使用的是
eregi
(旧教程),现在应该是preg_match。这是我现在拥有的功能:if(
eregi
("to:",$field) ||
eregi
("cc:",$field) ||
eregi
("Content-Type:",$field) ||
eregi
("
浏览 0
提问于2011-12-11
得票数 0
6
回答
带逗号的PHP MySQL回显变量
、
while ($row = mysqli_fetch_array($query3)) { $tagformat =
eregi
_replace
浏览 0
提问于2013-04-22
得票数 0
4
回答
弃用:不建议使用
eregi
()函数
eregi
("install", $_SERVER['REQUEST_URI']) && !
eregi
("install", $_SERVER['REQUEST_URI']) && !
eregi
("install", $_SERVER['PHP_SELF']) && !
eregi
("upgrade", $_SERVER['PHP
浏览 11
提问于2011-03-08
得票数 0
回答已采纳
4
回答
PHP 5.3的ereg/
eregi
替换
、
、
domains with a max of 63 chars if(
eregi
($regex, $url)==true) return true;} 某个仁慈的灵魂能给我替换
eregi
所需的替换代码吗?
浏览 15
提问于2012-03-31
得票数 19
回答已采纳
1
回答
为什么当字符串包含扩展的`mb_
eregi
_replace`代码时返回NULL?
、
、
$ php -aphp > echo $t;is null php > $t = mb_
eregi
_replace
浏览 3
提问于2017-07-25
得票数 0
回答已采纳
1
回答
将
eregi
_replace转换为preg_replace
、
、
、
我使用一系列
eregi
_replace调用来实现这一点,但是我确信有一种更聪明的方法,使用preg_replace和几行代码来实现这一点,但是我还没能让它正常工作。有人能帮上忙吗?当前代码:$data_item =
eregi
_replace("<h2[^>]*>","<h2>", $d
浏览 2
提问于2009-11-30
得票数 0
回答已采纳
1
回答
如何正确地将ereg替换为preg
、
getBrowserAgentsToDetect(); // comma separated list of devices if(
eregi
($userAgent,$browserAgent)){
浏览 9
提问于2012-01-11
得票数 0
回答已采纳
4
回答
函数
eregi
_replace()已弃用
、
、
我在尝试支持支付网关时收到以下错误消息:Message: Function
eregi
_replace() is deprecated $response =
eregi
_replace ( "[[:space:]]+", " ", $response );$response =
eregi
_replace ( "[\n\r]&qu
浏览 11
提问于2011-11-14
得票数 0
回答已采纳
1
回答
将
eregi
转换为preg_match,将ereg_replace转换为preg_replace
、
、
、
我正在使用PHP脚本的,我需要配置它为最新的PHP版本,我需要转换ereg和
eregi
到preg_match和preg_replace $text =
eregi
_replace('(((f|ht){1}tp://)[-a-zA-Z0-9@:%_\+.~#?&//=]+)
浏览 8
提问于2013-02-25
得票数 0
回答已采纳
3
回答
函数
eregi
()已弃用
、
、
、
函数
eregi
()已弃用。如何替换
eregi
()。我尝试使用preg_match,但随后就停止了工作。if ( !
eregi
("convert$", $this->library_path)) if ( !
eregi
("/$", $this->library_path)) $this->library_path .= "/";
浏览 12
提问于2011-04-18
得票数 5
回答已采纳
2
回答
ereg到preg问题
、
、
、
eregi
("<!--\ startBlock\(([^)]+)\)\ -->", $content["body"], $m)
eregi
("{url:([^}]+)}", $t
浏览 0
提问于2011-06-27
得票数 1
2
回答
“弃用:函数
eregi
()在url代码中被弃用”
robots.txt,但会给出错误的顶部: 弃用:在第105行的/home/hjlhvqyy/public_html/fastseoindia/klib/k_functions_http.php中不推荐使用
eregi
()函数 if ((<em
浏览 2
提问于2013-11-05
得票数 0
回答已采纳
2
回答
PHP链接正则表达式
、
将默认域作为example.com if(
eregi
_replace('(((f|ht){1}tp://)[-a-zA-Z0-9@:%_\+.~#= $text){ $text =
eregi
_replace('(((f|ht){1}tp://)[-a-zA-Z0-9@:%_\+.~#?&//=]+)', '<a href="\\1">\\1</
浏览 1
提问于2010-12-07
得票数 0
回答已采纳
4
回答
删除图像文件名php中的扩展名
$filePath='images/schools/'; while ($file = readdir($dir)) { if (
eregi
("\.png",$file) ||
eregi
("\.jpeg",$file) ||
eregi
("\.gif",$file) ||
eregi
("\.jpg",$file) ) {
浏览 0
提问于2012-08-27
得票数 0
回答已采纳
2
回答
PHP正则表达式匹配会导致错误
、
$variable = '[text]'; 此代码给出错误
eregi
() [function.
eregi
]: REG_BADRPT 这个问题的解决方案是什么?
浏览 4
提问于2010-09-17
得票数 0
回答已采纳
1
回答
替代
eregi
正则表达式函数输入
、
我收到了一些不推荐的代码,特别是这个代码片段:
eregi
("<ORDERID>(.*)<\/ORDERID>", $fcontents, $orderid_id);
eregi
("<TXORDER>(.*)<\/TXORDER>", $fcontents,
浏览 1
提问于2014-10-22
得票数 0
回答已采纳
点击加载更多
扫码
添加站长 进交流群
领取专属
10元无门槛券
手把手带您无忧上云
相关
资讯
源起网源码模板织梦删除网站没有被引用的图片
PHP内核与代码安全自动化分析(1)
hackme.inndy.tw的19道web题解(下)
浅谈PHP安全规范
LDAP—轻量级目录访问服务搭建
热门
标签
更多标签
云服务器
ICP备案
对象存储
腾讯会议
实时音视频
活动推荐
运营活动
广告
关闭
领券