is_file 只判断文件是否存在;
file_exists 判断文件是否存在或者是目录是否存在;
is_dir 判断目录是否存在
file_get_contents() 函数把整个文件读入一个字符串中
file_put_contents — 将一个字符串写入文件
file_exists 判断文件是否存在或者是目录是否存在;
is_dir 判断目录是否存在
file_get_contents() 函数把整个文件读入一个字符串中
file_put_contents — 将一个字符串写入文件
2016-03-03
file_get_contents,可以将整个文件全部读取到一个字符串中。 file_get_contents(path,include_path,context,start,max_length) path必填其它可选
2016-03-03
session_id:qv4068scfts1jhgdlos98nni97
1456913343
array
empty
1456913343
array
empty
2016-03-02
步骤:在自己搭建好的站点根目录(WWW)下新建一个cookietest.php的文件 将题目中的代码复制粘贴过来,保存文件。
打开浏览器,输入localhost\a.php 跳转 结果当前的Cookie为:
Array
(
[PHPSESSID] => qv4068scfts1jhgdlos98nni97
)
打开浏览器,输入localhost\a.php 跳转 结果当前的Cookie为:
Array
(
[PHPSESSID] => qv4068scfts1jhgdlos98nni97
)
2016-03-02
//用户名必须为字母、数字与下划线
if (!preg_match('/^\w+$/i', $user['name'])) {
die('用户名不合法');
}
//验证邮箱格式是否正确
if (!preg_match('/^[\w\.]+@\w+\.\w+$/i', $user['email'])) {
die('邮箱不合法');
}
//手机号必须为11位数字,且为1开头
if (!preg_match('/^1\d{10}$/i', $user['mobile'])) {
die('手机号不合法');
}
echo '用户信息验证成功';
if (!preg_match('/^\w+$/i', $user['name'])) {
die('用户名不合法');
}
//验证邮箱格式是否正确
if (!preg_match('/^[\w\.]+@\w+\.\w+$/i', $user['email'])) {
die('邮箱不合法');
}
//手机号必须为11位数字,且为1开头
if (!preg_match('/^1\d{10}$/i', $user['mobile'])) {
die('手机号不合法');
}
echo '用户信息验证成功';
2016-03-02
php通过setcookie函数进行Cookie的设置,任何从浏览器发回的Cookie,PHP都会自动的将他存储在$_COOKIE的全局变量之中,因此我们可以通过$_COOKIE['key']的形式来读取某个Cookie的值
2016-03-02
preg_match只能匹配一次结果,但很多时候我们需要匹配所有的结果,preg_match_all可以循环获取一个列表的匹配结果数组.
2016-03-02
<?php
$str = "<ul>
<li>item 1</li>
<li>item 2</li>
</ul>";
//在这里补充代码,实现正则匹配所有li中的数据
$p="/<li>(\w+\s\d)<\/li>/i";
//$p = "/<li>(.*)<\/li>/i";
preg_match_all($p,$str,$matches);
print_r($matches[1]);
$str = "<ul>
<li>item 1</li>
<li>item 2</li>
</ul>";
//在这里补充代码,实现正则匹配所有li中的数据
$p="/<li>(\w+\s\d)<\/li>/i";
//$p = "/<li>(.*)<\/li>/i";
preg_match_all($p,$str,$matches);
print_r($matches[1]);
2016-03-02
<?php
$subject = "my email is spark@imooc.com";
//在这里补充代码,实现正则匹配,并输出邮箱地址
$p='/[a-z]+\@[a-z]+\.(com|cn)/';
if(preg_match($p,$subject,$match)){
print_r($match[0]);
}
?>
$subject = "my email is spark@imooc.com";
//在这里补充代码,实现正则匹配,并输出邮箱地址
$p='/[a-z]+\@[a-z]+\.(com|cn)/';
if(preg_match($p,$subject,$match)){
print_r($match[0]);
}
?>
2016-03-02