pg_meta_data Get meta data for table &reftitle.description; arraypg_meta_data resourceconnection stringtable_name pg_meta_data returns table definition for table_name as an array. &warn.experimental.func; &reftitle.parameters; connection PostgreSQL database connection resource. table_name The name of the table. &reftitle.returnvalues; An array of the table definition, or &false; on error. &reftitle.examples; Getting table metadata '; var_dump($meta); echo ''; } ?> ]]> &example.outputs; array(5) { ["num"]=> int(1) ["type"]=> string(7) "varchar" ["len"]=> int(-1) ["not null"]=> bool(false) ["has default"]=> bool(false) } ["year"]=> array(5) { ["num"]=> int(2) ["type"]=> string(4) "int2" ["len"]=> int(2) ["not null"]=> bool(false) ["has default"]=> bool(false) } ["title"]=> array(5) { ["num"]=> int(3) ["type"]=> string(7) "varchar" ["len"]=> int(-1) ["not null"]=> bool(false) ["has default"]=> bool(false) } } ]]> &reftitle.seealso; pg_convert