str_shuffle() 随机打乱一个字符串。 string str_shuffle ( string $str ) 参数描述 str 输入字符串。返回值:返回打乱后的字符串。实例: <?php $str = 'abcdef'; $shuffled = str_shuffle($str); // ...
分类:
Web程序 时间:
2021-01-13 10:40:59
阅读次数:
0
1、下载 wget https://mirrors.tuna.tsinghua.edu.cn/apache/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz 也可以在浏览器去maven官网http://maven.apache.or ...
分类:
系统相关 时间:
2021-01-12 11:26:32
阅读次数:
0
import time flag=1 def time_out(flag): def timer(func): def inner(*arg,**kwargs): if flag: start_time=time.time() ret=func(*arg,**kwargs) end=time.tim ...
分类:
其他好文 时间:
2021-01-12 10:52:30
阅读次数:
0
一、安装 pip install pymysql 二、链接、执行MySQL、关闭(游标) import pymysql #建立链接 database = pymysql.connect('localhost', 'root', '123123', 'orderlog') #获得游标对象, 用于逐行遍 ...
分类:
数据库 时间:
2021-01-11 11:14:02
阅读次数:
0
ltrim() 删除字符串开头的空白字符(或其他字符)。 string ltrim ( string $str[, string $character_mask]) 参数描述str 输入的字符串。 character_mask 通过参数 character_mask,你也可以指定想要删除的字符,简单 ...
分类:
Web程序 时间:
2021-01-11 10:54:31
阅读次数:
0
UICollectionView的方法registerClass,如果调用会使注册的cell类在xib或storyboard里的相关内容失效。比如你在storyboard里为这个cell类加了一个button,那么实际上不会显示。 // If a class is registered, it wi ...
分类:
其他好文 时间:
2021-01-08 11:45:41
阅读次数:
0
修改golang包路径的时候一直报红字,因为go.mod里面也要一起修改。否则一直报错。 go.mod包名 module proxy-mgr mian.go里面的包名路径 import ( _ "proxy-mgr/boot" _ "proxy-mgr/router" ) ...
分类:
其他好文 时间:
2021-01-08 10:52:41
阅读次数:
0
#!/usr/bin/python #coding=utf-8 #好好学习,天天向上 a = 1 while a <= 6: print(a) a = a + 1 #!/usr/bin/python #coding=utf-8 #好好学习,天天向上 a = 1 while a <= 6: a = a ...
分类:
编程语言 时间:
2021-01-07 12:09:58
阅读次数:
0
今天看到代码@加一个函数名不知道是什么意思,所以来记录一下 这是es6的一个新特性 类的装饰器 类的装饰 装饰器可以用来装饰整个类。 @testable class MyTestableClass { // ... } function testable(target) { target.isTes ...
分类:
其他好文 时间:
2021-01-07 11:52:31
阅读次数:
0
序号 类型与描述 1 基本类型: 它们是算数类型,包括两种类型:整数类型和浮点类型。 2 枚举类型: 它们也是算数类型,被用来定义在程序中只能富裕其一定的离散整数值的变量。 3 void类型: 类型说明符void表明没有可用的值。 4 派生类型: 它们包括:指正类型,数组类型,结构类型,共用体类型和 ...
分类:
编程语言 时间:
2021-01-05 11:24:38
阅读次数:
0