$result = mysql_query('show columns from user ');
$aaa=mysql_query('select * from user');
$row = mysql_fetch_assoc($result);
echo "<br>";
$row2=mysql_fetch_assoc($aaa);
print_r($row);
print_r($row2);查看对应属性
$aaa=mysql_query('select * from user');
$row = mysql_fetch_assoc($result);
echo "<br>";
$row2=mysql_fetch_assoc($aaa);
print_r($row);
print_r($row2);查看对应属性
2018-04-18
$p='/[\w\s]+(\w{5}\@\w+\.\w+)/';
preg_match($p,$subject,$match);
echo $match[1];
preg_match($p,$subject,$match);
echo $match[1];
2018-04-18
class Truck extends Car{
public function speed2(){
$this->speed=Car::speedUp()+50;
}
}
$car = new Truck();
$car->speed2();
echo $car->speed;
//这样更清晰
public function speed2(){
$this->speed=Car::speedUp()+50;
}
}
$car = new Truck();
$car->speed2();
echo $car->speed;
//这样更清晰
2018-04-16
class Truck extends Car{
public function speedUp(){
Car::speedup();
return $this->speed+=50;
}
}
public function speedUp(){
Car::speedup();
return $this->speed+=50;
}
}
2018-04-13
父类引用子类实例($car = new Truck()),这个是有好处的,建议百度了解一下。话说幸亏我学过java,设计模式 ,不然这篇还真难懂。大家看不懂的可以先跳过或者百度,不要纠结这里,不影响的。
2018-04-10
<?php
$subject = "my email is spark@imooc.com";
//在这里补充代码,实现正则匹配,并输出邮箱地址
$pattern = '#\w+@\w+.\w+#';
preg_match($pattern,$subject,$show);
echo $show[0];
$subject = "my email is spark@imooc.com";
//在这里补充代码,实现正则匹配,并输出邮箱地址
$pattern = '#\w+@\w+.\w+#';
preg_match($pattern,$subject,$show);
echo $show[0];
2018-04-10
以下内容为教程文字:
如果只是判断文件存在,使用file_exists就行,file_exists不仅可以判断文件是否存在,同时也可以判断目录是否存在,从函数名可以看出,is_file是确切的判断给定的路径是否是一个文件。
有没有发现错误~
如果只是判断文件存在,使用file_exists就行,file_exists不仅可以判断文件是否存在,同时也可以判断目录是否存在,从函数名可以看出,is_file是确切的判断给定的路径是否是一个文件。
有没有发现错误~
2018-04-07