1--TEST-- 2crypt(): *0 should return *1 3--FILE-- 4<?php 5 6var_dump(crypt('foo', '*0')); 7 8?> 9--EXPECT-- 10string(2) "*1" 11