这样好吗?
if(file_exists($filename)){
echo "文件存在";
}else{
echo "文件存在";
}
if(file_exists($filename)){
echo "文件存在";
}else{
echo "文件存在";
}
2017-12-17
$filename = 'https://www.imooc.com/static/sea_config.js?v=201712141617';
//取得文件的大小并输出
echo filesize($filename);
//取得文件的大小并输出
echo filesize($filename);
2017-12-15
setcookie(name,value,expire),第二个参数是设置值,第三个参数是期限,期限比当前时间还少拿就不会生效了,逻辑上删除掉了
2017-12-13
date_default_timezone_set('PRC');
echo "<br/>"."文件的所有者".fileowner($filePath)."<br/>";
echo "文件的创建时间".Date::convertTimeStampToDate(filectime($filePath))."<br/>";
echo "文件的修改时间".Date::convertTimeStampToDate(filemtime($filePath))."<br/>";
echo "<br/>"."文件的所有者".fileowner($filePath)."<br/>";
echo "文件的创建时间".Date::convertTimeStampToDate(filectime($filePath))."<br/>";
echo "文件的修改时间".Date::convertTimeStampToDate(filemtime($filePath))."<br/>";
2017-12-12
<?php
//请创建一个数组变量arr,并尝试创建一个索引数组,键是0,值是苹果
$arr = array("0" => "苹果");
if( isset($arr) ) {print_r($arr);}
?>
运行成功
Array
(
[0] => 苹果
)
//请创建一个数组变量arr,并尝试创建一个索引数组,键是0,值是苹果
$arr = array("0" => "苹果");
if( isset($arr) ) {print_r($arr);}
?>
运行成功
Array
(
[0] => 苹果
)
2017-12-07
<?php
class Car {
public static $speed = 0;
//增加speedUp方法,使speed加10
public static function speedUp(){
self::$speed += 10;
return self::$speed;
}
}
echo Car::speedUp();
class Car {
public static $speed = 0;
//增加speedUp方法,使speed加10
public static function speedUp(){
self::$speed += 10;
return self::$speed;
}
}
echo Car::speedUp();
2017-12-07
最新回答 / 影_
.*? 中 .表示匹配任意字符(除换行符),*表示0或多次,合在一起就是匹配全字符,而?(0或1次) 则是非贪婪匹配,他一找到符合的就匹配。比如说abdeedf 他匹配的是abd 而不是abdeed 因为是懒惰模式而.?* .?本来就是0或一次了 你加个*还不如直接.*呢。。而且这样好像会出错,具体我也不懂。.?.*就很明显了 .?是0或1次,.*是0或多次 可以匹配
2017-12-06
<?php
$subject = "my email is spark@imooc.com";
//在这里补充代码,实现正则匹配,并输出邮箱地址
$pattern = '/\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/';
preg_match($pattern, $subject, $matches);
echo $matches[0];
//\w表示匹配任意字母、数字和下划线
$subject = "my email is spark@imooc.com";
//在这里补充代码,实现正则匹配,并输出邮箱地址
$pattern = '/\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/';
preg_match($pattern, $subject, $matches);
echo $matches[0];
//\w表示匹配任意字母、数字和下划线
2017-12-04
第三行改成这个 $p = '/[0-9|-]+/'; 就可以了。看到吐槽这个教程不好的,不知道该说什么。有的看就很开心。还不花钱。
2017-11-30