在ubuntu16.10 PHP測試連接MySQL中出現Call to undefined function: mysql_connect()

來源:互聯網
上載者:User

標籤:串連   lock   ted   fatal   har   eve   apach   create   使用者名稱   

1.問題:

 

測試php7.0 連結mysql資料庫的時候發生錯誤:

Fatal error: Uncaught Error: Call to undefined function mysqli_connect()

 

即使把 /etc/php/7.0/apache2/php.ini 中的行:

;extension=php_mysql.dll

修改成(即:取消行前面的分號";"):

extension=php_mysql.dll

問題依然沒解決。

 

測試檔案:

require_once __DIR__.‘/config.php‘;// 2. 擷取要查詢打使用者名稱(通過地址欄傳遞參數)$username=isset($_GET[‘username‘])?$_GET[‘username‘]:‘‘;if (empty($username)){    echo ‘使用者名稱不可為空.‘;}// 3. 串連資料庫$conn[email protected]mysqli_connect($db_host,$db_user,$db_psw) or die(‘資料庫連接失敗.‘.mysqli_error());var_dump($conn);

config.php檔案:

<?php/** * Created by PhpStorm. * User: andy * Date: 16-11-13 * Time: 下午7:34 */$db_host=‘127.0.0.1‘;$db_user=‘root‘;$db_psw=‘123456‘;$db_name=‘test‘;$db_charset=‘utf8‘;
View Code

2. 有效解決方案:

  • sudo apt-get install php7.0-mysql
  • sudo dpkg-reconfigure  php7.0-mysql
  • sudo /etc/init.d/mysql restart
  • sudo /etc/init.d/apache2 restart

最後串連成功:

參考:http://blog.sina.com.cn/s/blog_6b8bea470100qrdw.html

 

在ubuntu16.10 PHP測試連接MySQL中出現Call to undefined function: mysql_connect()

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.