<?php
//请修改变量p的正则表达式,使他能够匹配str中的电话
$p = '/\d|-/';
$str = "我的电话是010-12345678";
if(preg_match_all($p, $str, $match)){
echo implode("",$match[0]);
}else{
echo "失败!";
}
//请修改变量p的正则表达式,使他能够匹配str中的电话
$p = '/\d|-/';
$str = "我的电话是010-12345678";
if(preg_match_all($p, $str, $match)){
echo implode("",$match[0]);
}else{
echo "失败!";
}
2016-07-07
file_get_contents($path):读取文件内容
file_put_contents($path,$str):写入文件内容
Read-only file system in:文件为只读模式
file_put_contents($path,$str):写入文件内容
Read-only file system in:文件为只读模式
2016-07-06