虚幻书本

文章
5
资源
0
加入时间
3年1月8天

mysql事务处理

PHP事务处理//PHP事务处理$sqli=newmysqli("localhost","root","123456","worddb");if($sqli->connect_error){die("数据库连接失败".$sqli->connect_error);}//首先将提交设为false,当都成功了之后再去提交他//事务一旦提交之后就不能回滚了$sqli->autoco

Java日期时间API

JDK8之前获取系统当前时间:System类中的currentTimeMillis()long time = System.currentTimeMillis();//返回当前时间与1970年1月1日0时0分0秒之间以毫秒为单位的时间差。//称为时间戳System.out.println(time);java.util.Date类与java.sql.Date类 java...

Sort String

链接:https://www.nowcoder.com/acm/contest/141/E题目描述Eddy likes to play with string which is a sequence of characters. One day, Eddy has played with a string S for a long time and wonders how could ma...