1--TEST-- 2crypt(): *0 should return *1 3--SKIPIF-- 4<?php 5if (!function_exists('crypt')) { 6 die("SKIP crypt() is not available"); 7} 8?> 9--FILE-- 10<?php 11 12var_dump(crypt('foo', '*0')); 13 14?> 15--EXPECT-- 16string(2) "*1" 17