--TEST-- txn properties --SKIPIF-- --FILE-- isolation, $t->readonly, $t->deferrable ); $t->isolation = pq\Transaction::SERIALIZABLE; $t->readonly = true; $t->deferrable = true; var_dump( $t->isolation, $t->readonly, $t->deferrable ); ?> DONE --EXPECTF-- Test int(0) bool(false) bool(false) int(2) bool(true) bool(true) DONE