⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 config.php

📁 使用php开发的一个“熵”的计算程序
💻 PHP
字号:
<?php// Define path to root of PHPMATH library.define("PHPMATH", "/home/php/math");  // Define MySQL connection string in PEAR:DB format. You will need // to set up a database with login parameters and configure this // connection string before the database-aware classes will work.define("MYSQL", "mysql://myuser:mypass@localhost/mydb");// Set up database connection.require_once 'DB.php';$db =& DB::connect(MYSQL);if (DB::isError($db)) {  echo 'Standard Message: ' . $db->getMessage() . "<br />";  echo 'DBMS/User Message: ' . $db->getUserInfo() . "<br />";  echo 'DBMS/Debug Message: ' . $db->getDebugInfo() . "<br />";  exit;}$db->setFetchMode(DB_FETCHMODE_ASSOC);// Start a named session.session_name("entropy");session_start();?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -