上一页 1 2 3 4 5 6 7 ··· 30 下一页
摘要: 我们在json序列化的时:如下 import json data = { "name": "John", "age": 30, } json_data = json.dumps(data) print(json_data) 他的结果是 {"name": "John", "age": 30} # 在冒 阅读全文
posted @ 2024-07-11 10:37 流年中渲染了微笑 阅读(32) 评论(0) 推荐(0) 编辑
摘要: python中 from urllib import parse print(parse.quote('上海')) # %E4%B8%8A%E6%B5%B7 print(parse.unquote('%E4%B8%8A%E6%B5%B7')) # 上海 php中 编码 <?php $url = "h 阅读全文
posted @ 2024-07-04 15:45 流年中渲染了微笑 阅读(7) 评论(0) 推荐(0) 编辑
摘要: apache的安装 sudo apt-get install apache2 sudo /etc/init.d/apache2 start sudo /etc/init.d/apache2 restart【重启】 2.php的安装 sudo apt-cache search php7 sudo ap 阅读全文
posted @ 2024-06-28 14:49 流年中渲染了微笑 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 在 PHP 中,你可以使用 strpos() 函数来判断一个字符串(例如 "play")是否存在于另一个字符串中。strpos() 函数会返回子字符串在原始字符串中首次出现的位置(索引从 0 开始),如果子字符串不存在,则返回 false。 以下是一个简单的示例: $string = "I like 阅读全文
posted @ 2024-05-07 21:54 流年中渲染了微笑 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 一、错误信息 ImportError: dlopen(/Users/menghuiding/Library/Python/3.8/lib/python/site-packages/PIL/_imaging.cpython-38-darwin.so, 0x0002): tried: '/Users/m 阅读全文
posted @ 2024-04-16 14:38 流年中渲染了微笑 阅读(45) 评论(0) 推荐(0) 编辑
摘要: curl_getinfo 是 PHP 中 cURL 库的一个函数,用于获取 cURL 传输会话的信息。当你使用 cURL 发送请求后,你可以使用 curl_getinfo 函数来获取与该请求相关的信息,例如响应的状态码、重定向次数、总传输时间等。 以下是 curl_getinfo 函数的简单示例和参 阅读全文
posted @ 2024-03-22 14:48 流年中渲染了微笑 阅读(274) 评论(0) 推荐(0) 编辑
摘要: array_merge() 是 PHP 中的一个函数,用于合并一个或多个数组。它将一个或多个数组的元素合并到一个数组中,并返回结果数组。 函数的基本语法是 array_merge(array1, array2, array3, ...) 其中,array1、array2、array3 等是要合并的数 阅读全文
posted @ 2024-03-22 14:40 流年中渲染了微笑 阅读(11) 评论(0) 推荐(0) 编辑
摘要: ulimit -c 判断是否开启转储 为0 则没有开启 ulimit -c unlimited 设置转储core大小没有限制 在你的主目录下创建core文件夹,比如我在/home/joe下创建core文件夹 vim /etc/sysctl.conf kernel.core_pattern=/home 阅读全文
posted @ 2024-02-05 14:27 流年中渲染了微笑 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 盒子 采用wifi或者有线网口adb方式 保证在同一个局域网 1、打开adb设置-系统-关于-连续点击Android TV操作系统版本,会有提示要打开发者选项,在开发者选项内勾选USB调试 2、电脑连接adb adb connect 空格(192.168.xxx.xxx.)(xxx.xxx内是你电视 阅读全文
posted @ 2024-01-04 21:37 流年中渲染了微笑 阅读(1355) 评论(0) 推荐(0) 编辑
摘要: brew install Caskroom/cask/android-platform-tools 遇见的报错 解决办法 brew update-reset 阅读全文
posted @ 2024-01-02 21:43 流年中渲染了微笑 阅读(124) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 30 下一页