步骤:在自己搭建好的站点根目录(WWW)下新建一个cookietest.php的文件 将题目中的代码复制粘贴过来,保存文件。
打开浏览器,输入localhost\cookietest.php 或者127.0.0.1\cookietest.php 跳转
第一次打开因该是显示一个空的array 刷新一下 会有cookie值显示了。
打开浏览器,输入localhost\cookietest.php 或者127.0.0.1\cookietest.php 跳转
第一次打开因该是显示一个空的array 刷新一下 会有cookie值显示了。
2016-08-08
在类中function要写$this->speed+=10;
另外一种写法是:
$this->speed=10+$this->speed;
就有点像java或JavaScript中:
this.speed=10+this.speed;
这样理解就好理解了
另外一种写法是:
$this->speed=10+$this->speed;
就有点像java或JavaScript中:
this.speed=10+this.speed;
这样理解就好理解了
2016-08-08
请用文件检查函数file_exists检查文件是否存在,再试试!直接进入下一节
我不是有么!!!
if(file_exists($filename)){
echo file_get_contents($filename);
}
我不是有么!!!
if(file_exists($filename)){
echo file_get_contents($filename);
}
2016-08-07