1--TEST-- 2Test error operation of password_get_info() 3--FILE-- 4<?php 5//-=-=-=- 6var_dump(password_get_info()); 7var_dump(password_get_info(array())); 8 9echo "OK!"; 10?> 11--EXPECTF-- 12Warning: password_get_info() expects exactly 1 parameter, 0 given in %s on line %d 13NULL 14 15Warning: password_get_info() expects parameter 1 to be string, array given in %s on line %d 16NULL 17OK! 18