调用下面的代码,知道了服务器上面的index.php的内容。
if(file_exists('index.php')){
$content = file_get_contents('index.php');
echo $content;
}
内容为:
= "5.3") {
$root = __DIR__;
} else {
$root = dirname(__FILE__);
}
define("APP_PATH", $root);
date_default_timezone_set('Asia/Chongqing');
if(file_exists('index.php')){
$content = file_get_contents('index.php');
echo $content;
}
内容为:
= "5.3") {
$root = __DIR__;
} else {
$root = dirname(__FILE__);
}
define("APP_PATH", $root);
date_default_timezone_set('Asia/Chongqing');
2017-01-17
$offset=($page-1)*$pagesieze;
SELECT * FROM table limit $offset,$pagesize;
SELECT * FROM table limit $offset,$pagesize;
2017-01-17
<?php
class Car{
//在这里定义一个共有属性name
public $name = '驻地';
protected $sex = "男";
private $age = 18;
function getAge(){
return $this->age;
}
}
$car = new Car();
//在这里输出$car对象的name属性
echo $car->getAge();
class Car{
//在这里定义一个共有属性name
public $name = '驻地';
protected $sex = "男";
private $age = 18;
function getAge(){
return $this->age;
}
}
$car = new Car();
//在这里输出$car对象的name属性
echo $car->getAge();
2017-01-17
若用imagecreate(int x_size,int y_size)创建一副大小为x_size和y_size的图像,需要用imagecolorallocate(resource $image,int $red,int $green,int $blue)来填充背景色,这时必须填充
2017-01-14
若用imagecreatetruecolor(int x_size,int y_size)创建一副大小为x_size和y_size的黑色图像,需要用imagefill(resource $image,int $red,int $green,int $blue)来填充背景色,不填充时为黑色。resource $image表示图像标识,后三个参数是红、绿、蓝成分,可以用0-255整数或0x00到0xFF表示不同的颜色;
2017-01-14
<?php
//分隔字符串
$str = 'sun-moon-star';
$result = explode('-',$str);
print_r($result);
/*
$arr = array('sun','moon','star');
$result_1 = implode('-',$arr);
echo $result_1;*/
?>
implode和explode用法正好相反。
//分隔字符串
$str = 'sun-moon-star';
$result = explode('-',$str);
print_r($result);
/*
$arr = array('sun','moon','star');
$result_1 = implode('-',$arr);
echo $result_1;*/
?>
implode和explode用法正好相反。
2017-01-14