上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 49 下一页
摘要: # int(x[, base]) 将x转换为一个整数,base为进制,默认十进制 # # long(x[, base] ) 将x转换为一个长整数 # # float(x) 将x转换到一个浮点数 # # complex(real[, imag]) 创建一个复数 # # str(x) 将对象 x 转换为字符串 # # repr(x) 将对象 x 转换为表达式字符串 # # eval(str) 用... 阅读全文
posted @ 2019-05-04 10:26 样子2018 阅读(29671) 评论(1) 推荐(3) 编辑
摘要: # Numbers(数字) # int(有符号整型) # long(长整型[也可以代表八进制和十六进制]) # float(浮点型) # complex(复数) # String(字符串) # List(列表)[] # Tuple(元组)() # Dictionary(字典){} if __name__ == "__main__": # 注意:long... 阅读全文
posted @ 2019-05-04 09:58 样子2018 阅读(327) 评论(0) 推荐(0) 编辑
摘要: 效果如图: 阅读全文
posted @ 2019-04-27 17:03 样子2018 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 支付回调代码如下: 然后是你自己的逻辑处理。。。 阅读全文
posted @ 2019-04-26 17:12 样子2018 阅读(560) 评论(0) 推荐(1) 编辑
摘要: #include #include void array_sort(int *a, int len) { int i, j, tmp; for (i = 0; i a[j]) { tmp = a[i]; a[i] = a[j]; a[j] = tmp; ... 阅读全文
posted @ 2019-04-26 10:39 样子2018 阅读(2089) 评论(0) 推荐(0) 编辑
摘要: 利用dll注射工具进行执行runGo函数 阅读全文
posted @ 2019-04-24 22:24 样子2018 阅读(977) 评论(0) 推荐(0) 编辑
摘要: 一、功能界面 具体的详细代码:https://github.com/yangsphp/websocket-master/tree/master 二、具体代码实现 1、前端代码如下 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8 阅读全文
posted @ 2019-04-24 15:18 样子2018 阅读(6980) 评论(14) 推荐(0) 编辑
摘要: /** * @param $ip 待查询的ip * @return mixed */ function getIpAddressInfo($ip) { $ipurl = 'http://api.ip138.com/query/?ip=' . $ip . '&datatype=txt'; $ipheader = array('token:注册的token'); $ip... 阅读全文
posted @ 2019-04-23 10:31 样子2018 阅读(695) 评论(0) 推荐(0) 编辑
摘要: initialize($config); } /** * 初始化数据 * @param array $config 配置文件数组 */ public function initialize(array $config = []) { $this->host = $config['host']; $th... 阅读全文
posted @ 2019-04-22 12:27 样子2018 阅读(577) 评论(0) 推荐(0) 编辑
摘要: 效果图如下: 阅读全文
posted @ 2019-04-16 14:07 样子2018 阅读(7101) 评论(0) 推荐(0) 编辑
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 49 下一页