1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/ext/standard/tests/strings/crypt_des_error.phpt

17 lines
208 B
PHP

--TEST--
crypt(): *0 should return *1
--SKIPIF--
<?php
if (!function_exists('crypt')) {
die("SKIP crypt() is not available");
}
?>
--FILE--
<?php
var_dump(crypt('foo', '*0'));
?>
--EXPECT--
string(2) "*1"