$car='静态方法';
$变量='定义new 变量直接引用类名';
echo $变量::$car();
$变量='定义new 变量直接引用类名';
echo $变量::$car();
2016-02-13
<?php
$filename = '/data/webroot/usercode/code/test2.txt';
if ( file_exists($filename) ) {
if ( is_writeable($filename) ) {
//写入一个字符串到$filename文件中
file_put_contents($filename, 'hello world');
}
}
这样就对了
$filename = '/data/webroot/usercode/code/test2.txt';
if ( file_exists($filename) ) {
if ( is_writeable($filename) ) {
//写入一个字符串到$filename文件中
file_put_contents($filename, 'hello world');
}
}
这样就对了
2016-02-07
$str = '主要有以下几个文件:index.php, style.css, common.js';
//将目标字符串$str中的文件名替换后增加em标签
$p='/(\w+\.\w+)/i';
$str = preg_replace($p,'<em>\1</em>',$str);
echo $str;
//将目标字符串$str中的文件名替换后增加em标签
$p='/(\w+\.\w+)/i';
$str = preg_replace($p,'<em>\1</em>',$str);
echo $str;
2016-02-04