gpt4 book ai didi

php - 未定义函数异常 : Attempted to call function from namespace Controller

转载 作者:行者123 更新时间:2023-12-02 17:40:47 28 4
gpt4 key购买 nike

我正在尝试使用 this code snipp from scott 应用安全 token ,但我似乎无法在 symfony2 中解决它,这是我的代码:

<?php

namespace Acme\UserManagementBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Response;

class TokenController extends Controller
{

public function randSecureAction($min, $max) {
$range = $max - $min;
if ($range < 0) return $min; // not so random...
$log = log($range, 2);
$bytes = (int) ($log / 8) + 1; // length in bytes
$bits = (int) $log + 1; // length in bits
$filter = (int) (1 << $bits) - 1; // set all lower bits to 1

do {
$rnd = hexdec(bin2hex(openssl_random_pseudo_bytes($bytes)));
$rnd = $rnd & $filter; // discard irrelevant bits
} while ($rnd >= $range);

return new Response ($min + $rnd);
}

public function getTokenAction($length=32) {
$token = "";
$codeAlphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
$codeAlphabet.= "abcdefghijklmnopqrstuvwxyz";
$codeAlphabet.= "0123456789";

for($i=0;$i<$length;$i++) {
$token .= $codeAlphabet[randSecureAction(0,strlen($codeAlphabet))];
}
return new Response ($token);
}

}

我将此 TokenController 创建为类似 this 的服务,这样我就可以将它调用到我的 DefaultController,现在该服务无法调用此 Controller 内的其他函数,是我做错了还是我的代码中存在问题,因为内部函数 (getTokenAction) 似乎无法使用 TokenController 类中的其他函数 (randSecureAction)。

最佳答案

getTokenAction 中有一行:

$token .= $codeAlphabet[randSecureAction(0,strlen($codeAlphabet))];

这是你的问题,你必须使用 $this->randSecureAction(...)。所以试试

$token .= $codeAlphabet[$this->randSecureAction(0,strlen($codeAlphabet))];

关于php - 未定义函数异常 : Attempted to call function from namespace Controller,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21131291/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com