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

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

  • <legend id='sszeO'><style id='sszeO'><dir id='sszeO'><q id='sszeO'></q></dir></style></legend>
      1. <tfoot id='sszeO'></tfoot>

        如何在mysql数据库连接中使用抛出异常

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

              <tbody id='DqFQp'></tbody>

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

              • <small id='DqFQp'></small><noframes id='DqFQp'>

                  本文介绍了如何在mysql数据库连接中使用抛出异常的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我遇到了这个:-

                  PHP 错误处理:die() Vs trigger_error() vs 抛出异常

                  并理解抛出异常更好

                  如何在此代码中替换 die 并使用 throw 异常:-

                  How can i replace die and use throw exception here in this code:-

                  <?php
                  # FileName="Connection_php_mysql.htm"
                  # Type="MYSQL"
                  # HTTP="true"
                  $hostname_db = "localhost";
                  $database_db = "database";
                  $username_db = "root";
                  $password_db = "password";
                  $db = mysqli_connect($hostname_db, $username_db, $password_db) or die("Unable to connect with Database"); 
                  ?>
                  

                  推荐答案

                  try
                  {
                      if ($db = mysqli_connect($hostname_db, $username_db, $password_db))
                      {
                          //do something
                      }
                      else
                      {
                          throw new Exception('Unable to connect');
                      }
                  }
                  catch(Exception $e)
                  {
                      echo $e->getMessage();
                  }
                  

                  这篇关于如何在mysql数据库连接中使用抛出异常的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何在 PHP 中捕获 require() 或 include() 的错误? 下一篇:isset($var) 与 @$var

                  相关文章

                  最新文章

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

                    <tfoot id='carhj'></tfoot>

                      <bdo id='carhj'></bdo><ul id='carhj'></ul>
                  1. <legend id='carhj'><style id='carhj'><dir id='carhj'><q id='carhj'></q></dir></style></legend>

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