<?php
class Car {
static function speed(){
return 0;
}
}
echo Car :: speed()+10;
class Car {
static function speed(){
return 0;
}
}
echo Car :: speed()+10;
2016-04-05
<?php
class Car {
public $speed = 0;
//增加speedUp方法,使speed加10
function speedUp($num){
return $this->speed+=$num;
}
}
$car = new Car();
$car->speedUp(10);
echo $car->speed;
class Car {
public $speed = 0;
//增加speedUp方法,使speed加10
function speedUp($num){
return $this->speed+=$num;
}
}
$car = new Car();
$car->speedUp(10);
echo $car->speed;
2016-04-05
//查询语句不懂的可以先学习mysql几天
//m和n的意思就是从第m条开始,截取n条,就是这个意思
limit $m,$n
//m和n的意思就是从第m条开始,截取n条,就是这个意思
limit $m,$n
2016-04-02
$img=imagecreatetruecolor(100, 100);//建立长、宽100图像(默认为黑色)
$red=imagecolorallocate($img, 0xFF, 0x00, 0x00);//(建立的图像,颜色,颜色,颜色)用来匹配图型颜色
imagefill($img, 0, 0, $red);//imagefill(建立图像,x,y,填充的颜色) x=0,y=0表示坐标
imagepng($img);//imagepng(),以 PNG 格式将图像输出到浏览器或文件,可以改变格式
imagedestroy($img);//imagedestroy()销毁图片
$red=imagecolorallocate($img, 0xFF, 0x00, 0x00);//(建立的图像,颜色,颜色,颜色)用来匹配图型颜色
imagefill($img, 0, 0, $red);//imagefill(建立图像,x,y,填充的颜色) x=0,y=0表示坐标
imagepng($img);//imagepng(),以 PNG 格式将图像输出到浏览器或文件,可以改变格式
imagedestroy($img);//imagedestroy()销毁图片
2016-04-02
一直无法通过,是因为文件地址修改了,把地址改成
$filename = '/data/webroot/usercode/resource/test.txt';
$filename = '/data/webroot/usercode/resource/test.txt';
2016-04-02
原来是文件不存在
<?php
$filename = '/data/webroot/usercode/code/test2.txt';
//写入一个字符串到$filename文件中
if(file_exists($filename)){
$x='why not say clear';
file_put_contents($filename,$x);
}else{
echo "文件不存在";
}
<?php
$filename = '/data/webroot/usercode/code/test2.txt';
//写入一个字符串到$filename文件中
if(file_exists($filename)){
$x='why not say clear';
file_put_contents($filename,$x);
}else{
echo "文件不存在";
}
2016-04-02
//在www目录下建一个文件,放下面这个简单代码就可以,然后用浏览器打开,上面给的缓冲方法估计新手也看不懂吧
<?php
setcookie('test', time());
$x=$_COOKIE['test'];
echo $x;
?>
<?php
setcookie('test', time());
$x=$_COOKIE['test'];
echo $x;
?>
2016-04-02
有些同学用了/is\s(.*)/这个正则或者类似的正则,然后用输出$matches[1]这个值。在这道题里确实可以正确的输出邮箱,但这个无法匹配通用的邮箱格式。因为这里的$subject变量已经被定义死了,像平常注册会员时需要检测输入框里内容是否为邮箱时,这种正则是没有用的。所以大家还是认真对待每一章节的学习内容。不管多么简单,都能收获到很多东西。
2016-04-01