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

📄 skipif.inc

📁 PHP v6.0 For Linux 运行环境:Win9X/ WinME/ WinNT/ Win2K/ WinXP
💻 INC
字号:
<?php// This script prints "skip" unless:// * the pgsql extension is built-in or loadable, AND// * there is a database called "test" accessible//   with no username/password, AND// * we have create/drop privileges on the entire "test"//   databaseinclude("config.inc");if (!extension_loaded("pgsql")) {    die("skip\n");}$conn = @pg_connect($conn_str);if (!is_resource($conn)) {    die("skip could not connect\n");}?>

⌨️ 快捷键说明

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