gpt4 book ai didi

php - 公共(public)函数与 CodeIgniter 中的函数

转载 作者:IT王子 更新时间:2023-10-28 23:45:37 25 4
gpt4 key购买 nike

在PHP中,在类中声明方法有什么区别

公共(public)函数 VS 函数

例如:

public function contact()
{
$data['header'] = "Contact";
$this->load->view('admin/admin_contact', $data);
}

VS

function contact()
{
$data['header'] = "Contact";
$this->load->view('admin/admin_contact', $data);
}

使用 public functionfunction 是更好的做法吗?为什么?

最佳答案

根据PHP.net

Class methods may be defined as public, private, or protected. Methods declared without any explicit visibility keyword are defined as public.

为了获得最佳实践,我建议使用可见性关键字(尤其是在使用更高版本的 PHP 时)。它可以防止混淆(就像您现在所处的那样)并促进编码的标准实践。

关于php - 公共(public)函数与 CodeIgniter 中的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9849984/

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