gpt4 book ai didi

php - 在类中包含类是不好的做法吗?

转载 作者:行者123 更新时间:2023-12-02 07:38:42 26 4
gpt4 key购买 nike

假设我有一个名为 smallBox.php 的类文件:

<?php
class SmallBox {

public function boxMethod() {}

}

然后我使用“require”将 smallBox.php 文件包含到另一个类中:

<?php
class BigBox {

public function __construct() {

require 'smallBox.php';
$box = new SmallBox();
$box->boxMethod();

}

}
?>

我是 PHP OOP 和 MVC 的新手,想知道在 BigBox 类中包含 smallBox.php 是否被认为是不好的做法?

最佳答案

您应该使用 autoloading of classes 而不是手动require-ing PHP 文件.基本上,它是一种根据类名加载适当 PHP 文件的机制。

关于php - 在类中包含类是不好的做法吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13598170/

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