<?php
//从数组变量$arr中,读取键为0的值
$arr = array('苹果','香蕉');
if( isset($arr['0']) ) {print_r($arr['0']);}
?>
这样也可以
//从数组变量$arr中,读取键为0的值
$arr = array('苹果','香蕉');
if( isset($arr['0']) ) {print_r($arr['0']);}
?>
这样也可以
2018-01-07
$subject = "my email is spark@imooc.com";
$pattern = "/(\w+s+){3}\w+@\w+.com/";
preg_match($pattern,$subject,$matchs);
print_r($matchs);
$pattern = "/(\w+s+){3}\w+@\w+.com/";
preg_match($pattern,$subject,$matchs);
print_r($matchs);
2018-01-05
看了初级, 这套教程 真的是新手友好型.
然后看到这里,我想说 我当初c++学了那么久,,你这里 就这样,是不是跨越太大,是不是太不好友了,新手应该是完全看不懂这是讲什么 ,
然后看到这里,我想说 我当初c++学了那么久,,你这里 就这样,是不是跨越太大,是不是太不好友了,新手应该是完全看不懂这是讲什么 ,
2018-01-04
$pattern='/([\w\s]{11})\s(([\w]+)\@([\w]+)\.(com|cn))/';
preg_match($pattern, $subject, $matches);
print_r($matches[2]);
preg_match($pattern, $subject, $matches);
print_r($matches[2]);
2018-01-03
没有这个文件啊PHP Warning: file_get_contents(/data/webroot/usercode/resource/test.txt): failed to open stream: No such file or directory in index.php on line 4
2018-01-02
这教程让我对现在慕课网课程的水平严重怀疑啊,就写这么点皮毛,简介啥的倒是吹的上天,看完这点就不看了。话说这样水平的教程能卖出去嘛,卖出去了,说实话,就这么点玩意能找到开发工作?
2017-12-28