1--TEST-- 2Test function get_cfg_var() by substituting argument 1 with int values. 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 substituting argument 1 with int values ***\n"; 15 16 17 18$variation_array = array ( 19 'int 0' => 0, 20 'int 1' => 1, 21 'int 12345' => 12345, 22 'int -12345' => -2345, 23 ); 24 25 26foreach ( $variation_array as $var ) { 27 var_dump(get_cfg_var( $var ) ); 28} 29?> 30--EXPECTF-- 31*** Test substituting argument 1 with int values *** 32bool(false) 33bool(false) 34bool(false) 35bool(false) 36