<?php
$fruit=array('苹果','香蕉','菠萝');
for($index=0; $index<3; $index++){
echo '<br>数组第'.$index.'值是:'.$fruit[$index];
}
?>
$fruit=array('苹果','香蕉','菠萝');
for($index=0; $index<3; $index++){
echo '<br>数组第'.$index.'值是:'.$fruit[$index];
}
?>
2017-07-05
<?php
$subject = "my email is spark@imooc.com";
//在这里补充代码,实现正则匹配,并输出邮箱地址
$pattern = '/\w+@\w+.\w+/';
preg_match($pattern, $subject, $matches);
echo $matches[0];
$subject = "my email is spark@imooc.com";
//在这里补充代码,实现正则匹配,并输出邮箱地址
$pattern = '/\w+@\w+.\w+/';
preg_match($pattern, $subject, $matches);
echo $matches[0];
2017-07-05
我感觉class的运用主要在网页设计和系统开发吧。之前的我的代码都停留在变量和函数阶段,所以,对这些理解起来真的很难。还是要通过项目才能学会~~~~
2017-07-04