如何在mysql中清空某个数据库文件?

如何在mysql中清空某个数据库文件?,第1张

可以清空表。

想清空整个数据,那么方法有如下。

1,一个一个的清空所有的表。truncate table tablename

2,导出该数据库表结构,然后删除该表,然后重建数据库。

iptables是按先后顺序处理的,

-A INPUT -p tcp -m tcp --dport 3306 -j ACCEPT 这里ACCEPT之后就直接访问MYSQL数据库去了

-A INPUT -p tcp --destination-port 3306 -m mac --mac-source 04:7D:7B:E7:8B:5B -j DROP这条策略完全没起到作用

把这两条策略顺序改过来试试看

function deletehtml($str) {

$str = trim($str)

$str = preg_replace("</P>","1234a3211",$str)

$str = preg_replace("</p>","1234a3211",$str)

$str = preg_replace("<br/>","1234a3211",$str)

$str = preg_replace("/<(.[^>]*)>/","",$str)

$str = preg_replace("/([\r\n])[\s]+/","",$str)

$str = preg_replace("/-->/","",$str)

$str = preg_replace("/<!--.*/","",$str)

$str = preg_replace("/&(quot|#34)/","",$str)

$str = preg_replace("/&(amp|#38)/", "/&/",$str)

$str = preg_replace("/&(lt|#60)/", "/</",$str)

$str = preg_replace("/&(gt|#62)/", ">",$str)

$str = preg_replace("/&(nbsp|#160)/", "",$str)

$str = preg_replace("/&(iexcl|#161)/", "/\xa1/",$str)

$str = preg_replace("/&(cent|#162)/", "/\xa2/",$str)

$str = preg_replace("/&(pound|#163)/", "/\xa3/",$str)

$str = preg_replace("/&(copy|#169)/", "/\xa9/",$str)

$str = preg_replace("/(\d+)/", "",$str)

$str = preg_replace("/</", "",$str)

$str = preg_replace("/>/", "",$str)

$str = preg_replace("/\r\n/", "",$str)

$str = preg_replace("/1234a3211/", "/<br/>/",$str)

return $str

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9414247.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-28
下一篇 2023-04-28

发表评论

登录后才能评论

评论列表(0条)

保存