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
<?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
从百度粑粑搜索得到的:
在php中,=>操作符通常用于数组操作中,一般的形式如下:
array(key' => 'value'
, .....
); 键(key)可以是整数(integer)或者是字符串(sting),值(value)可以是任意类型的值。
——————————————分割线————————————————————————
->操作符用于类、对象的操作中,以下示例:
<?php
class foo
{
function do_foo()
{
echo "Doing foo";
}
}
$bar = new foo;
$bar ->do_foo((
?>
在php中,=>操作符通常用于数组操作中,一般的形式如下:
array(key' => 'value'
, .....
); 键(key)可以是整数(integer)或者是字符串(sting),值(value)可以是任意类型的值。
——————————————分割线————————————————————————
->操作符用于类、对象的操作中,以下示例:
<?php
class foo
{
function do_foo()
{
echo "Doing foo";
}
}
$bar = new foo;
$bar ->do_foo((
?>
2017-11-27