已采纳回答 / 荼酒
$arr0 这是你自己取的变量名~ $arr['0']; 拆分来看, $arr是上面你自己定的数组所取的变量名,['0']这个代表数组中的第一个元素,所以结合起来就是 $arr这个数组中的第一个元素(即“苹果”也就是['0'])赋值给变量$arr0也就是$arr0 = $arr['0'];了这样能理解吗?
2015-11-10
最新回答 / 大笼子
<?php//连接数据库mysql_connect('127.0.0.1', 'code1', '');mysql_select_db('code1',$db);mysql_query("set names utf8");//在这里进行数据查询$res=mysql_query('select * from user',$db);$row=mysql_fetch_array($res);print_r($row);
2015-11-10
$str = '主要有以下几个文件:index.php, style.css, common.js';
$pattern = '/(\w+\.[a-zA-Z0-9]{2,3})/';
$result = preg_replace($pattern, '<em>$1</em>', $str);
echo $result;
$pattern = '/(\w+\.[a-zA-Z0-9]{2,3})/';
$result = preg_replace($pattern, '<em>$1</em>', $str);
echo $result;
2015-11-10
<?php
$str = "<ul>
<li>item 1</li>
<li>item 2</li>
</ul>";
//在这里补充代码,实现正则匹配所有li中的数据
$pattern = '/<li>(.*?)<\/li>\s*<li>(.*?)<\/li>/i';
preg_match_all($pattern, $str, $matches);
print_r($matches[1]);
$str = "<ul>
<li>item 1</li>
<li>item 2</li>
</ul>";
//在这里补充代码,实现正则匹配所有li中的数据
$pattern = '/<li>(.*?)<\/li>\s*<li>(.*?)<\/li>/i';
preg_match_all($pattern, $str, $matches);
print_r($matches[1]);
2015-11-09
$subject = "my email is spark@imooc.com";
//在这里补充代码,实现正则匹配,并输出邮箱地址
$pattern = '/[\w\-]{3,8}@[a-zA-Z0-9]{2,10}\.[a-zA-Z]{2,4}/';
preg_match($pattern, $subject, $match);
print_r($match);
//在这里补充代码,实现正则匹配,并输出邮箱地址
$pattern = '/[\w\-]{3,8}@[a-zA-Z0-9]{2,10}\.[a-zA-Z]{2,4}/';
preg_match($pattern, $subject, $match);
print_r($match);
2015-11-09
$p = '/[\d]{3}\-([\d]{8})/';
$str = "我的电话是010-12345678,你的電話是022-98765432";
preg_match($p, $str, $match);
print_r($match[0]);
$str = "我的电话是010-12345678,你的電話是022-98765432";
preg_match($p, $str, $match);
print_r($match[0]);
2015-11-09
已采纳回答 / pardon110
$arr=array('0'=>'苹果'); //创建索引数组,并赋值给 变量$arrif( isset($arr) ) {print_r($arr);} //变量$arr存在,则打印$arrelse{print '请设置数组$arr的值!';} if( isset($arr) ) {print_r($arr);}
2015-11-09
最赞回答 / 梅姐偶尔冒个泡
<?php$arr = array("1","2","3"); //定义一个数组 初值为a[0]="1"a[1]="2",a[2]="3"print_r($arr); //输出该数组echo "<br />";//换行var_dump($arr);//输出每个值的类型?>
2015-11-09
函数不能返回多个值,但可以通过返回一个数组来得到类似的效果。
function numbers() {
return array(1, 2, 3);
}
list ($one, $two, $three) = numbers();
例如:
<?php
function sum($a, $b) {
return array($a+1,$a+$b,$b+1);
}
//在这里调用函数取得返回值
list($one, $two, $three) = sum(2, 3);
echo $one.'<br>';
echo $two.'<br>';
echo $three;
function numbers() {
return array(1, 2, 3);
}
list ($one, $two, $three) = numbers();
例如:
<?php
function sum($a, $b) {
return array($a+1,$a+$b,$b+1);
}
//在这里调用函数取得返回值
list($one, $two, $three) = sum(2, 3);
echo $one.'<br>';
echo $two.'<br>';
echo $three;
2015-11-09
public function __call($name,$args){
if($name == 'speedDown') {
$this->speed -=10;
}
}
关于重载方法 __call(),请看:http://www.5idev.com/p-php_method_overloading.shtml
if($name == 'speedDown') {
$this->speed -=10;
}
}
关于重载方法 __call(),请看:http://www.5idev.com/p-php_method_overloading.shtml
2015-11-08