setcookie('test',time()-1);
在本地环境试验时并不能删除cookie
使用header("Set-Cookie:test=1393832059;expires=".gmdate('D,d M Y H:i:s \G\M\T',time()-1));才可以呀
在本地环境试验时并不能删除cookie
使用header("Set-Cookie:test=1393832059;expires=".gmdate('D,d M Y H:i:s \G\M\T',time()-1));才可以呀
2015-11-12
$str = '主要有以下几个文件:index.php, style.css, common.js';
$pattern = '/(\w+\.[a-zA-Z0-9]{2,3})/';
$result = preg_replace($pattern, '<em>$1</em>', $str);
echo $result;
$pattern = '/(\w+\.[a-zA-Z0-9]{2,3})/';
$result = preg_replace($pattern, '<em>$1</em>', $str);
echo $result;
2015-11-10
<?php
$str = "<ul>
<li>item 1</li>
<li>item 2</li>
</ul>";
//在这里补充代码,实现正则匹配所有li中的数据
$pattern = '/<li>(.*?)<\/li>\s*<li>(.*?)<\/li>/i';
preg_match_all($pattern, $str, $matches);
print_r($matches[1]);
$str = "<ul>
<li>item 1</li>
<li>item 2</li>
</ul>";
//在这里补充代码,实现正则匹配所有li中的数据
$pattern = '/<li>(.*?)<\/li>\s*<li>(.*?)<\/li>/i';
preg_match_all($pattern, $str, $matches);
print_r($matches[1]);
2015-11-09
$subject = "my email is spark@imooc.com";
//在这里补充代码,实现正则匹配,并输出邮箱地址
$pattern = '/[\w\-]{3,8}@[a-zA-Z0-9]{2,10}\.[a-zA-Z]{2,4}/';
preg_match($pattern, $subject, $match);
print_r($match);
//在这里补充代码,实现正则匹配,并输出邮箱地址
$pattern = '/[\w\-]{3,8}@[a-zA-Z0-9]{2,10}\.[a-zA-Z]{2,4}/';
preg_match($pattern, $subject, $match);
print_r($match);
2015-11-09
$p = '/[\d]{3}\-([\d]{8})/';
$str = "我的电话是010-12345678,你的電話是022-98765432";
preg_match($p, $str, $match);
print_r($match[0]);
$str = "我的电话是010-12345678,你的電話是022-98765432";
preg_match($p, $str, $match);
print_r($match[0]);
2015-11-09
函数不能返回多个值,但可以通过返回一个数组来得到类似的效果。
function numbers() {
return array(1, 2, 3);
}
list ($one, $two, $three) = numbers();
例如:
<?php
function sum($a, $b) {
return array($a+1,$a+$b,$b+1);
}
//在这里调用函数取得返回值
list($one, $two, $three) = sum(2, 3);
echo $one.'<br>';
echo $two.'<br>';
echo $three;
function numbers() {
return array(1, 2, 3);
}
list ($one, $two, $three) = numbers();
例如:
<?php
function sum($a, $b) {
return array($a+1,$a+$b,$b+1);
}
//在这里调用函数取得返回值
list($one, $two, $three) = sum(2, 3);
echo $one.'<br>';
echo $two.'<br>';
echo $three;
2015-11-09
public function __call($name,$args){
if($name == 'speedDown') {
$this->speed -=10;
}
}
关于重载方法 __call(),请看:http://www.5idev.com/p-php_method_overloading.shtml
if($name == 'speedDown') {
$this->speed -=10;
}
}
关于重载方法 __call(),请看:http://www.5idev.com/p-php_method_overloading.shtml
2015-11-08
//定义继承于Car的Truck类
class Truck extends Car { //调用关键字extends让Truck类集成Car类
public function speedUp(){ //重新定义speedUp方法
$this->speed = parent::speedUp() + 50; //方法体中使用parent::speedUp来调用父类的speedUp方法
return $this->speed;
}
}
class Truck extends Car { //调用关键字extends让Truck类集成Car类
public function speedUp(){ //重新定义speedUp方法
$this->speed = parent::speedUp() + 50; //方法体中使用parent::speedUp来调用父类的speedUp方法
return $this->speed;
}
}
2015-11-08