最新回答 / JourneyCz
题中代码克隆给$b的是$a。如果在克隆时要改变原对象的属性,可以通过‘$this->属性名’重写。如将题中__clone()改写为:function __clone(){ $this-name = "Clone car";}将输出: Clone car
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