致命错误:未捕获类型错误:不支持的操作数类型:string + int in

6 php php-8

这是我的错误标题:

致命错误:未捕获类型错误:不支持的操作数类型:C:\xamppp\htdocs\file\thefile\config.php 中的 string + int:105 堆栈跟踪:#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;}
Run Code Online (Sandbox Code Playgroud)

这是代码:

<?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;
}
?>
Run Code Online (Sandbox Code Playgroud)

zan*_*war 15

您提供的错误仅发生在 PHP 8 上,这是因为您尝试将字符串添加到整数。在以前的版本中,错误消息曾经是“遇到非数字值”,这在某些情况下使问题变得更加清晰。

$out = ''您的问题将通过更改为$out = null对输出没有不利影响的方式来解决。

  • 在 PHP v5.6 中,您根本不会收到任何错误(并且代码可以正常工作)
  • 在 PHP v7 中,您将收到警告“遇到非数字值”
  • 在 PHP v8 中,您会收到致命错误“Uncaught TypeError: Unsupported operand types: string + int”

  • 天啊,非常感谢你的帮助。它固定了。你分享了我还不知道的新信息。太感谢了。:) (2认同)