最新回答 / 慕粉4214887
$matches 是preg_match_all 最后得出的 是一个数组 第0个代表全部 第1个代表正则匹配的第一个<td>Eric</td> 里的 第二个 代表第二个 <td>25</td>
2017-04-24
最新回答 / 菠萝君s3982575
首先我新手,我也不知道我自己所理解的是对是错. <?phpclass Car { //定义个类 private $speed = 0; // private 定义个受保护的属性$speed; public function getSpeed() { // pubulic 定义个公共的方法 getspeed;外部可以访问该方法; return $this->speed; } protected function speedU...
2017-04-18
最赞回答 / MrThinco
<...图片...>其实,实际上浏览器中没显示html标签,但是实际上$matches[0]中确实是匹配到了标签的,并且存了数组中,是指html标签被浏览器解析掉了,所以没有显示。
2017-04-17
最赞回答 / 唱跳rap篮球_
第一个错误是Undefined index:就是未定义$_COOKIE['imooh'],这应该是你单词打错了。第二个你设置的时间有问题,时间应该为time()+你想保存的时间。因为它默认是从unix时间戳的起点算的,你不用time()+的话,你设置的cookie在197几年就失效了,当然打印不出来
2017-04-13
最新回答 / 慕函数1176964
尝试把$size代码补充完整试试<?php$url="http://pic2.ooopic.com/10/51/63/13b1OOOPIC17.jpg";$filename='a,jpg';file_put_contents($filename,file_get_contents($url));$url='http://wiki.ubuntu.org.cn/images/3/3b/Qref_Edubuntu_Logo.png';$logo='b.png';file_put_contents($log...
2017-04-06
最新回答 / weibo_格式化记忆的灰_0
header("Content-Type:text/html; charset=utf-8");header("Content-type: image/png");//echo '创建一张图片'$img=imagecreatetruecolor(200, 200);$red=imagecolorallocate($img, 0xFF, 0x00, 0x00);$black = imagecolorallocate($img,0x00,0x00,0x00);imagefill($img, 0, 0, $...
2017-04-01