1--TEST-- 2PostgreSQL pg_insert() (9.0+) 3--SKIPIF-- 4<?php 5include("skipif.inc"); 6skip_bytea_not_hex(); 7?> 8--FILE-- 9<?php 10error_reporting(E_ALL); 11 12include 'config.inc'; 13 14$db = pg_connect($conn_str); 15pg_query($db, "SET standard_conforming_strings = 0"); 16 17$fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB'); 18 19pg_insert($db, $table_name, $fields) or print "Error in test 1\n"; 20echo pg_insert($db, $table_name, $fields, PGSQL_DML_STRING)."\n"; 21echo pg_insert($db, $table_name, $fields, PGSQL_DML_STRING|PGSQL_DML_ESCAPE)."\n"; 22var_dump( pg_insert($db, $table_name, $fields, PGSQL_DML_EXEC) ); // Return resource 23 24echo "Ok\n"; 25?> 26--EXPECTF-- 27INSERT INTO "php_pgsql_test" ("num","str","bin") VALUES (1234,E'AAA',E'\\x424242'); 28INSERT INTO "php_pgsql_test" ("num","str","bin") VALUES ('1234','AAA','BBB'); 29resource(%d) of type (pgsql result) 30Ok