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

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

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

        <bdo id='obdWf'></bdo><ul id='obdWf'></ul>
      1. 如何捕获此错误:“注意:未定义偏移量:0"

        时间:2023-09-21
        <legend id='SCTd4'><style id='SCTd4'><dir id='SCTd4'><q id='SCTd4'></q></dir></style></legend>

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

                <tbody id='SCTd4'></tbody>

              • <bdo id='SCTd4'></bdo><ul id='SCTd4'></ul>

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

                1. 本文介绍了如何捕获此错误:“注意:未定义偏移量:0"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我想捕捉这个错误:

                  $a[1] = 'jfksjfks';
                  try {
                        $b = $a[0];
                  } catch (Exception $e) {
                        echo "jsdlkjflsjfkjl";
                  }
                  

                  实际上,我在以下行中收到此错误:$parse = $xml->children[0]->children[0]->toArray();

                  in fact, I got this error on the following line: $parse = $xml->children[0]->children[0]->toArray();

                  推荐答案

                  您需要定义您的自定义错误处理程序,例如:

                  You need to define your custom error handler like:

                  <?php
                  
                  set_error_handler('exceptions_error_handler');
                  
                  function exceptions_error_handler($severity, $message, $filename, $lineno) {
                    if (error_reporting() == 0) {
                      return;
                    }
                    if (error_reporting() & $severity) {
                      throw new ErrorException($message, 0, $severity, $filename, $lineno);
                    }
                  }
                  
                  $a[1] = 'jfksjfks';
                  try {
                        $b = $a[0];
                  } catch (Exception $e) {
                        echo "jsdlkjflsjfkjl";
                  }
                  

                  这篇关于如何捕获此错误:“注意:未定义偏移量:0"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何关闭 PHP 通知? 下一篇:在 PHP 5.4 中禁用严格标准

                  相关文章

                  最新文章

                    <small id='1sd16'></small><noframes id='1sd16'>

                      <bdo id='1sd16'></bdo><ul id='1sd16'></ul>

                    <tfoot id='1sd16'></tfoot>

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

                      <legend id='1sd16'><style id='1sd16'><dir id='1sd16'><q id='1sd16'></q></dir></style></legend>