gpt4 book ai didi

PHP 构造不回显变量

转载 作者:行者123 更新时间:2023-12-05 04:15:05 27 4
gpt4 key购买 nike

我是 PHP 的新手,所以仍然了解构造的工作原理,我希望得到一些帮助!

以下代码无法回显变量 $arrivalTime 和 $hourStay:

class Variable {

public $arrivalTime;
public $hourStay;

public function __construct() {
$this->arrivalTime = $_POST['arrivalTime'];
$this->hourStay = $_POST['hourStay'];

echo $this->arrivalTime;
echo $this->hourStay;
}
}

最佳答案

您需要通过在代码中的某处调用 new Variable() 来实例化该类。然而,一般来说,最好不要让你的类依赖于 post 变量,而是通过构造函数传递它们:

class Variable {

public $arrivalTime;
public $hourStay;

public function __construct($arrivalTime, $hourStay) {
// TODO: Check if the values are valid, e.g.
// $arrivalTime is a time in the future
// and $hourStay is an integer value > 0.
$this->arrivalTime = $arrivalTime;
$this->hourStay = $hourStay;
}

public function print() {
echo $this->arrivalTime;
echo $this->hourStay;
}
}

$var = new Variable($_POST['arrivalTime'], $_POST['hourStay']);
$var->print();

另请注意我是如何从构造函数中提取输出的。它唯一的任务应该是将对象初始化为有效状态。处理输入或生成输出不是它的责任。

关于PHP 构造不回显变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33418143/

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