最赞回答 / nohateorthanks
<...code...><?php$fruit=array('苹果','香蕉','菠萝');echo $fruit['0'];$fruit=array('apple'=>'苹果');//echo "<br>".$fruit['0'];echo "<br>".$fruit['apple'];?>我刚刚去写了点验证下,果然是。如果把注释那一行放上去,然后把下面的注释掉发现会报错 不会输出苹果 应该我想的是对的
2016-10-26
一脸萌比~~不过我觉得是正常的~之前学html css js进阶篇时也是这样。第一遍刷个印象,之后懂了一些再来看就会感觉大不同。多点耐心~~~相信付出一定会有回报的~~~~~~~~
2016-10-26
<?php
$filename = '/data/webroot/usercode/resource/test.txt';
//判断如果$filename文件存在的话 就输出文件内容
if(file_exists($filename)){
echo file_get_contents($filename);
echo '文件存在';
}
$filename = '/data/webroot/usercode/resource/test.txt';
//判断如果$filename文件存在的话 就输出文件内容
if(file_exists($filename)){
echo file_get_contents($filename);
echo '文件存在';
}
2016-10-26
$this->speed =$this->speed+ 10;这个才是$this->speed + =10;的正确写法
2016-10-25