最赞回答 / 乔帮主
你这个没错呀,只是没有结果输出来而已!你要想输出speed,必须echo $car->speed;才行呀,你调用的这个方法$car->speedup();只是进行一个相加的操作啊,它并没有输出这个speed
2016-01-02
这个有问题吧,不执行sql语句直接提交,sql数据会被修改吗,为什么不执行反而是对的,我就懵逼了,是老师的教程写错了吧,我tm是真懵逼了!!!
2015-12-31
<?php
$p = '/<[^>]+>+(.*?)<[^>]+\>/i';
$str = "<b>example: </b><div align=left>this is a test</div>";
preg_match_all($p, $str, $matches);
print_r($matches);
$p = '/<[^>]+>+(.*?)<[^>]+\>/i';
$str = "<b>example: </b><div align=left>this is a test</div>";
preg_match_all($p, $str, $matches);
print_r($matches);
2015-12-31
最新回答 / 慕莱坞9220042
你好,这个是正则表达式,楼主好好学学正则表达式自然就知道了,这里学习php,主要还是对php的知识进行学习,这些都是辅助工具,单独学学就可以了,望楼主采纳!
2015-12-31
本地实验这段代码,变化数字,结果很好玩
<?php
//$content = file_get_contents('F:/eula.2052.txt');
$fp = fopen('F:/eula.2052.txt','rb');
$contents = '';
while(!feof($fp)){
echo $contents .= fread($fp,4096); //一次读取4096个字符
}
fclose($fp);
?>
<?php
//$content = file_get_contents('F:/eula.2052.txt');
$fp = fopen('F:/eula.2052.txt','rb');
$contents = '';
while(!feof($fp)){
echo $contents .= fread($fp,4096); //一次读取4096个字符
}
fclose($fp);
?>
2015-12-30