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

📄 11pg_meta_data.phpt

📁 php-4.4.7学习linux时下载的源代码
💻 PHPT
字号:
--TEST--PostgreSQL pg_metadata()--SKIPIF--<?php include("skipif.inc"); ?>--FILE--<?phperror_reporting(E_ALL);include 'config.inc';$db = pg_connect($conn_str);$meta = pg_meta_data($db, $table_name);var_dump($meta);?>--EXPECT--array(3) {  ["num"]=>  array(5) {    ["num"]=>    int(1)    ["type"]=>    string(4) "int4"    ["len"]=>    int(4)    ["not null"]=>    bool(false)    ["has default"]=>    bool(false)  }  ["str"]=>  array(5) {    ["num"]=>    int(2)    ["type"]=>    string(4) "text"    ["len"]=>    int(-1)    ["not null"]=>    bool(false)    ["has default"]=>    bool(false)  }  ["bin"]=>  array(5) {    ["num"]=>    int(3)    ["type"]=>    string(5) "bytea"    ["len"]=>    int(-1)    ["not null"]=>    bool(false)    ["has default"]=>    bool(false)  }}

⌨️ 快捷键说明

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