我正在尝试在我的代码点火器模型中重用变量,但我无法完全理解语法。我遇到的问题是在第4行。
class Products_model extends CI_Model {
var $gcsServerIpAddress = "11.22.33.44";
var $gcsServerAddress = "http://".$this->gcsServerIpAddress."/eft/";
我尝试过对象语法:$ this-> foo。我也尝试使用变量名:$ foo。他们都没有工作。有什么建议吗?
答案 0 :(得分:1)
尝试在构造函数中设置值。
class Products_model extends CI_Model {
var $gcsServerIpAddress;
var $gcsServerAddress;
function __construct(){
$this->gcsServerIpAddress = "11.22.33.44";
$this->gcsServerAddress = "http://".$this->gcsServerIpAddress."/eft/";
}
}