【发布时间】:2021-05-20 02:38:15
【问题描述】:
这是我的错误标题:
致命错误:未捕获的类型错误:不支持的操作数类型:C:\xamppp\htdocs\file\thefile\config.php:105 中的字符串 + int 堆栈跟踪:#0 C:\xamppp\htdocs\file\thefile\category .php(84): alphaID('f', true) #1 {main} 在第 105 行的 C:\xamppp\htdocs\file\thefile\config.php 中抛出
第 105 行的错误:
{$out = $out + strpos($index, substr($in, $t, 1)) * $bcp;}
这是代码:
<?php
//fungsi encrypt id
function alphaID($in, $to_num = false, $pad_up = false, $pass_key = null)
{
$out = '';
$index = 'abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ';
$base = strlen($index);
if ($pass_key !== null) {
for ($n = 0; $n < strlen($index); $n++) {
$i[] = substr($index, $n, 1);
}
$pass_hash = hash('sha256',$pass_key);
$pass_hash = (strlen($pass_hash) < strlen($index) ? hash('sha512', $pass_key) : $pass_hash);
for ($n = 0; $n < strlen($index); $n++) {
$p[] = substr($pass_hash, $n, 1);
}
array_multisort($p, SORT_DESC, $i);
$index = implode($i);
}
if ($to_num) {
$len = strlen($in) - 1;
for ($t = $len; $t >= 0; $t--) {
$bcp = bcpow($base, $len - $t);
$out = $out + strpos($index, substr($in, $t, 1)) * $bcp;
}
if (is_numeric($pad_up)) {
$pad_up--;
if ($pad_up > 0) {
$out -= pow($base, $pad_up);
}
}
} else {
if (is_numeric($pad_up)) {
$pad_up--;
if ($pad_up > 0) {
$in += pow($base, $pad_up);
}
}
for ($t = ($in != 0 ? floor(log($in, $base)) : 0); $t >= 0; $t--) {
$bcp = bcpow($base, $t);
$a = floor($in / $bcp) % $base;
$out = $out . substr($index, $a, 1);
$in = $in - ($a * $bcp);
}
}
return $out;
}
?>
【问题讨论】:
-
您正在尝试将字符串添加到整数。检查您的类型
-
该表达式中的
+是否应该是.? -
这是一个计算,应该是
((int)$out + (int)strpos($index, substr($in, $t, 1))) * $bcp