<tfoot id='eQqao'></tfoot>

      <legend id='eQqao'><style id='eQqao'><dir id='eQqao'><q id='eQqao'></q></dir></style></legend>

        <small id='eQqao'></small><noframes id='eQqao'>

      1. <i id='eQqao'><tr id='eQqao'><dt id='eQqao'><q id='eQqao'><span id='eQqao'><b id='eQqao'><form id='eQqao'><ins id='eQqao'></ins><ul id='eQqao'></ul><sub id='eQqao'></sub></form><legend id='eQqao'></legend><bdo id='eQqao'><pre id='eQqao'><center id='eQqao'></center></pre></bdo></b><th id='eQqao'></th></span></q></dt></tr></i><div id='eQqao'><tfoot id='eQqao'></tfoot><dl id='eQqao'><fieldset id='eQqao'></fieldset></dl></div>
          <bdo id='eQqao'></bdo><ul id='eQqao'></ul>

        不推荐使用:函数 eregi_replace()

        时间:2023-07-31
        1. <i id='SJA6d'><tr id='SJA6d'><dt id='SJA6d'><q id='SJA6d'><span id='SJA6d'><b id='SJA6d'><form id='SJA6d'><ins id='SJA6d'></ins><ul id='SJA6d'></ul><sub id='SJA6d'></sub></form><legend id='SJA6d'></legend><bdo id='SJA6d'><pre id='SJA6d'><center id='SJA6d'></center></pre></bdo></b><th id='SJA6d'></th></span></q></dt></tr></i><div id='SJA6d'><tfoot id='SJA6d'></tfoot><dl id='SJA6d'><fieldset id='SJA6d'></fieldset></dl></div>
            <tbody id='SJA6d'></tbody>
          <tfoot id='SJA6d'></tfoot>

        2. <legend id='SJA6d'><style id='SJA6d'><dir id='SJA6d'><q id='SJA6d'></q></dir></style></legend>

          <small id='SJA6d'></small><noframes id='SJA6d'>

              • <bdo id='SJA6d'></bdo><ul id='SJA6d'></ul>
                • 本文介绍了不推荐使用:函数 eregi_replace()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  在 PHP 5.3.8 上运行时出现以下错误

                  I am getting the following error when running on PHP 5.3.8

                  已弃用:函数 eregi_replace() 在/home/XXXXXX/public_html/admin/modifypoll.php 第 49 行

                  Deprecated: Function eregi_replace() is deprecated in /home/XXXXXX/public_html/admin/modifypoll.php on line 49

                  这是代码行,请任何人帮忙

                  This is the line of code, can anyone help please

                  $question = eregi_replace('</?[a-z][a-z0-9]*[^<>]*>', '', $question );
                  

                  我不知道要把它改成什么.有人可以帮忙吗

                  I am not sure what to change it to. Can anyone help please

                  推荐答案

                  整个 ereg 函数系列在 PHP 中都不推荐使用,并且会在某个时候从语言中删除.替代品是 preg 家族.大多数情况下,更改很简单:

                  the entire ereg family of functions are deprecated in PHP and will at some point be removed from the language. The replacement is the preg family. For the most part, the change is simple:

                  preg_replace('/[^<>]>/i', '', $question);
                  ^--           ^      ^^
                  

                  1. 将 ereg 更改为 preg
                  2. 添加分隔符 (/)
                  3. 对于不区分大小写的匹配 (eregi),添加 i 修饰符
                  1. change ereg to preg
                  2. add delimeters (/)
                  3. for case insensitive matches (eregi), add the i modifier

                  这篇关于不推荐使用:函数 eregi_replace()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:php preg_replace regex 替换两个字符串之间的字符串 下一篇:删除字符串的一部分,但仅当它位于字符串末尾

                  相关文章

                  最新文章

                    <bdo id='srbfk'></bdo><ul id='srbfk'></ul>
                  <i id='srbfk'><tr id='srbfk'><dt id='srbfk'><q id='srbfk'><span id='srbfk'><b id='srbfk'><form id='srbfk'><ins id='srbfk'></ins><ul id='srbfk'></ul><sub id='srbfk'></sub></form><legend id='srbfk'></legend><bdo id='srbfk'><pre id='srbfk'><center id='srbfk'></center></pre></bdo></b><th id='srbfk'></th></span></q></dt></tr></i><div id='srbfk'><tfoot id='srbfk'></tfoot><dl id='srbfk'><fieldset id='srbfk'></fieldset></dl></div>

                      <small id='srbfk'></small><noframes id='srbfk'>

                      <tfoot id='srbfk'></tfoot>

                      <legend id='srbfk'><style id='srbfk'><dir id='srbfk'><q id='srbfk'></q></dir></style></legend>