php写pkcs5报错
程序员文章站
2022-06-14 13:32:39
...
这是代码:
报错:Parse error: syntax error, unexpected T_STRING
报错的句子是:$pad = $blocksize ? (strlen($text) % $blocksize);
什么原因啊?
function pkcs5_pad ($text, $blocksize) { $pad = $blocksize ? (strlen($text) % $blocksize); return $text . str_repeat(chr($pad), $pad); }
报错:Parse error: syntax error, unexpected T_STRING
报错的句子是:$pad = $blocksize ? (strlen($text) % $blocksize);
什么原因啊?
回复讨论(解决方案)
有非法字符
function pkcs5_pad($text, $blocksize){ $pad = $blocksize - (strlen($text) % $blocksize); return $text . str_repeat(chr($pad), $pad);}
老xu威武!!
推荐阅读