会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
流年中渲染了微笑
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
···
31
下一页
2024年6月28日
php的安装
摘要: 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 流年中渲染了微笑
阅读(18)
评论(0)
推荐(0)
2024年5月7日
php-strpos 判断一个字符串是否存在于另一个字符串中
摘要: 在 PHP 中,你可以使用 strpos() 函数来判断一个字符串(例如 "play")是否存在于另一个字符串中。strpos() 函数会返回子字符串在原始字符串中首次出现的位置(索引从 0 开始),如果子字符串不存在,则返回 false。 以下是一个简单的示例: $string = "I like
阅读全文
posted @ 2024-05-07 21:54 流年中渲染了微笑
阅读(373)
评论(0)
推荐(0)
2024年4月16日
运行python安装包没找到
摘要: 一、错误信息 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 流年中渲染了微笑
阅读(121)
评论(0)
推荐(0)
2024年3月22日
PHP curl_getinfo
摘要: curl_getinfo 是 PHP 中 cURL 库的一个函数,用于获取 cURL 传输会话的信息。当你使用 cURL 发送请求后,你可以使用 curl_getinfo 函数来获取与该请求相关的信息,例如响应的状态码、重定向次数、总传输时间等。 以下是 curl_getinfo 函数的简单示例和参
阅读全文
posted @ 2024-03-22 14:48 流年中渲染了微笑
阅读(466)
评论(0)
推荐(0)
PHP array_merge
摘要: array_merge() 是 PHP 中的一个函数,用于合并一个或多个数组。它将一个或多个数组的元素合并到一个数组中,并返回结果数组。 函数的基本语法是 array_merge(array1, array2, array3, ...) 其中,array1、array2、array3 等是要合并的数
阅读全文
posted @ 2024-03-22 14:40 流年中渲染了微笑
阅读(36)
评论(0)
推荐(0)
2024年2月5日
ubuntu配置core文件输出
摘要: 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 流年中渲染了微笑
阅读(113)
评论(0)
推荐(0)
2024年1月4日
android TV 网络受限解决办法
摘要: 盒子 采用wifi或者有线网口adb方式 保证在同一个局域网 1、打开adb设置-系统-关于-连续点击Android TV操作系统版本,会有提示要打开发者选项,在开发者选项内勾选USB调试 2、电脑连接adb adb connect 空格(192.168.xxx.xxx.)(xxx.xxx内是你电视
阅读全文
posted @ 2024-01-04 21:37 流年中渲染了微笑
阅读(3088)
评论(0)
推荐(0)
2024年1月2日
Mac M1芯片安装android-platform-tools
摘要: brew install Caskroom/cask/android-platform-tools 遇见的报错 解决办法 brew update-reset
阅读全文
posted @ 2024-01-02 21:43 流年中渲染了微笑
阅读(218)
评论(0)
推荐(0)
2023年11月16日
mac 下使用 brew 安装包报错 error: Cannot install under Rosetta 2 in ARM default prefix (/opt/homebrew)!
摘要: mac 下使用 brew 安装包报错 error: Cannot install under Rosetta 2 in ARM default prefix (/opt/homebrew)! To rerun under ARM use: arch -arm64 brew install ... T
阅读全文
posted @ 2023-11-16 19:18 流年中渲染了微笑
阅读(667)
评论(0)
推荐(0)
2023年10月31日
Mac 终端没有ll命令解决办法
摘要: 首先在 ~/.bash_profile 文件中加入如下命令(如果没有就touch一个) alias ll='ls -alF' 随后执行 source ~/.bash_profile 命令,使修改生效 这样就可以使用 ll命令了,但是这样有一个问题,每次新开的终端ll 命令都会失效 以下是解决方案 在
阅读全文
posted @ 2023-10-31 15:42 流年中渲染了微笑
阅读(569)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
···
31
下一页
公告