gpt4 book ai didi

function - 如何在 Symfony 中使用函数?

转载 作者:行者123 更新时间:2023-12-04 16:59:52 26 4
gpt4 key购买 nike

在我的 PagesRepository.php 我创建了一个函数

use Ramsey\Uuid\Uuid;


function generateUid()
{
return Uuid::uuid4();
}

现在我想在我的 PagesController.php 中使用这个函数:
$unique_id = generateUid();

但我收到错误消息:

Attempted to call function "generateUid" from namespace "App\Controller".

最佳答案

您可以使用类名进行静态方法调用:

namespace App\Controller;

use App\Repository\PagesRepository;

class PagesController
{
// ...

$unique_id = PagesRepository::generateUid();

// ...
}

关于function - 如何在 Symfony 中使用函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53515371/

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