我正在创建密码生成器,我目前正在处理特殊字符数组以将它们转换为字符串。我在 cvs 文件中保存了特殊字符,根据密码中应该有多少特殊字符使用作为数组进行切片,然后我想让它们成为字符串并与数字和字母连接。
$list = './SpecialChar.csv';
$e = array_map('str_getcsv', file($list));
//$nRange telling how many characters should be slice
$nRange = $length-($numb*2)-$specialChar;
shuffle($e);
$s = array_slice($e,0,$nRange);
$sString = implode(" ",$s); //does not work
$sString = htmlentities(implode(" ",$s)); //does not work
繁花不似锦