class Car {
//增加构造与析构函数
public $a=0;
function __construct(){
$this->a+=10;
echo "构造函数被调用\n";
}
function __destruct(){
print "析构函数被调用\n";
}
}
$car = new Car();
echo "hello";
echo "<br/>";
$car1=new Car();
echo ":)";
$car1->__construct();
echo ":)";
echo $car1->a;
//增加构造与析构函数
public $a=0;
function __construct(){
$this->a+=10;
echo "构造函数被调用\n";
}
function __destruct(){
print "析构函数被调用\n";
}
}
$car = new Car();
echo "hello";
echo "<br/>";
$car1=new Car();
echo ":)";
$car1->__construct();
echo ":)";
echo $car1->a;
2017-08-01
$filename = '/data/webroot/usercode/code/test2.txt';
//写入一个字符串到$filename文件中
if(file_exists($filename)){
if(is_writable($filename)){
file_put_contents($filename,'hh');
}else{
echo "文件不能写入";
}
}else{
echo "文件不存在";
}
最后输出文件不存在。。。
//写入一个字符串到$filename文件中
if(file_exists($filename)){
if(is_writable($filename)){
file_put_contents($filename,'hh');
}else{
echo "文件不能写入";
}
}else{
echo "文件不存在";
}
最后输出文件不存在。。。
2017-08-01
最赞回答 / 小橙子的小马甲
$subject = "abcaaaaaaaaaadef";$pattern = '/a.*?d/';preg_match($pattern, $subject, $matches);print_r($matches); //在这种情况下,.*会一直匹配,加了?后,变成非贪婪模式,?后跟的是d,所以会匹配至d结束//运行结果是
A...
2017-07-31