Warning: mysql_connect(): Host '10.100.132.152' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts' in /26/588/AcR6/index.php on line 3
连接失败
连接失败
2015-12-15
这样也行
<?php
//从数组变量$arr中,读取键为0的值
$arr = array('苹果','香蕉');
print_r($arr[0]);
?>
<?php
//从数组变量$arr中,读取键为0的值
$arr = array('苹果','香蕉');
print_r($arr[0]);
?>
2015-12-15
使速度累加50,$this->speed+=parent::speedUp()+40;这样写调用父类的方法加10,在调用truck类的方法加40,一共才是加50吧
2015-12-14
链接数据库
$link = mysql_connect($host, $user, $pass);
选择一个操作的数据库
mysql_select_db('code1');
设置当前连接使用的字符编码
mysql_query("set names 'utf8'");
$link = mysql_connect($host, $user, $pass);
选择一个操作的数据库
mysql_select_db('code1');
设置当前连接使用的字符编码
mysql_query("set names 'utf8'");
2015-12-13
跟Unix系统命令类似,PHP使用unlink函数进行文件删除。
unlink($filename);用于删除文件。
rmdir($dir); 用于删除文件夹(前提是文件夹为空或拥有权限)
foreach (glob("*") as $filename) {
unlink($filename);
}
unlink($filename);用于删除文件。
rmdir($dir); 用于删除文件夹(前提是文件夹为空或拥有权限)
foreach (glob("*") as $filename) {
unlink($filename);
}
2015-12-13
fileowner:获得文件的所有者
filectime:获取文件的创建时间
filemtime:获取文件的修改时间
fileatime:获取文件的访问时间
date('Y-m-d H:i:s', filemtime($filename)); 可以使用这种方式来设置日期格式。
filectime:获取文件的创建时间
filemtime:获取文件的修改时间
fileatime:获取文件的访问时间
date('Y-m-d H:i:s', filemtime($filename)); 可以使用这种方式来设置日期格式。
2015-12-13
//写入一个字符串到$filename文件中,在写入之前先判断一下是否可写吧~
$str = "hello world";
if(is_writable($filename)){
file_put_contents($filename, $str);
}
$str = "hello world";
if(is_writable($filename)){
file_put_contents($filename, $str);
}
2015-12-13