mirror of
https://github.com/php/php-src.git
synced 2026-03-26 01:02:25 +01:00
17 lines
208 B
PHP
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"
|