1--TEST-- 2Test function get_cfg_var() by calling it with its expected arguments 3--CREDITS-- 4Francesco Fullone ff@ideato.it 5#PHPTestFest Cesena Italia on 2009-06-20 6--INI-- 7session.use_cookies=0 8session.serialize_handler=php 9session.save_handler=files 10--FILE-- 11<?php 12 13 14echo "*** Test by calling method or function with its expected arguments ***\n"; 15var_dump(get_cfg_var( 'session.use_cookies' ) ); 16var_dump(get_cfg_var( 'session.serialize_handler' ) ); 17var_dump(get_cfg_var( 'session.save_handler' ) ); 18 19?> 20--EXPECTF-- 21*** Test by calling method or function with its expected arguments *** 22string(1) "0" 23string(3) "php" 24string(5) "files" 25