<?php
//请修改变量p的正则表达式,使他能够匹配str中的电话
$p = '/^我[^\s]+(7|8)$/';
$str = "我的电话是010-12345678";
preg_match($p, $str, $match);
echo $match[0];
//请修改变量p的正则表达式,使他能够匹配str中的电话
$p = '/^我[^\s]+(7|8)$/';
$str = "我的电话是010-12345678";
preg_match($p, $str, $match);
echo $match[0];
2015-03-24
<?php
$filename = '/data/webroot/usercode/resource/test.txt';
//编写代码读取$filename的文件内容
$content=file_get_contents($filename);
echo $content;
//修改文件内容
//$str='this is a test file.';
//file_put_contents($filename,$str);
$filename = '/data/webroot/usercode/resource/test.txt';
//编写代码读取$filename的文件内容
$content=file_get_contents($filename);
echo $content;
//修改文件内容
//$str='this is a test file.';
//file_put_contents($filename,$str);
2015-03-22