• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
古加纳
博客园    首页    新随笔    联系   管理    订阅  订阅
上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
2020年5月22日
mysql的配置目录
摘要: mysql核心目录 查看相关信息 ps -ef | grep mysql 安装目录 /var/lib/mysql 原配置文件 /usr/share/mysql 配置使用文件 /etc/my.cnf 命令目录 /usr/bin 起停脚本 /etc/init.d/mysql 阅读全文
posted @ 2020-05-22 17:44 古加纳 阅读(220) 评论(0) 推荐(0)
查看mysql版本号
摘要: 链接 https://www.cnblogs.com/heyongboke/p/9876345.html 阅读全文
posted @ 2020-05-22 17:39 古加纳 阅读(186) 评论(0) 推荐(0)
2020年5月20日
php函数修改限制时间和大小
摘要: set_time_limit(0);ini_set("memory_limit", "1024M"); 阅读全文
posted @ 2020-05-20 10:39 古加纳 阅读(414) 评论(0) 推荐(0)
2020年5月14日
php 错误配置日志
摘要: 1.修改php-fpm.conf中配置 没有则增加catch_workers_output = yeserror_log = "/usr/local/lnmp/php/var/log/error_log" 2.修改php.ini中配置,没有则增加log_errors = Onerror_log = 阅读全文
posted @ 2020-05-14 14:07 古加纳 阅读(502) 评论(0) 推荐(0)
2020年5月9日
MYSQL中的COLLATE是什么?
摘要: 原文链接🔗https://www.jianshu.com/p/f8707b8461d3 阅读全文
posted @ 2020-05-09 14:23 古加纳 阅读(199) 评论(0) 推荐(0)
mysql建表时为什么要添加charset=utf8
摘要: 原文链接https://www.jb51.net/article/177872.htm 阅读全文
posted @ 2020-05-09 14:19 古加纳 阅读(477) 评论(0) 推荐(0)
2020年5月5日
LNMP环境搭建(linux+Nginx + Mysql + PHP)
摘要: https://blog.51cto.com/4690837/2379081 阅读全文
posted @ 2020-05-05 22:16 古加纳 阅读(147) 评论(0) 推荐(0)
2020年4月27日
php 实现Hash表功能
摘要: 原链接 https://www.jb51.net/article/98495.htm Hash表作为最重要的数据结构之一,也叫做散列表。使用PHP实现Hash表的功能。PHP可以模拟实现Hash表的增删改查。通过对key的映射到数组中的一个位置来访问。映射函数叫做Hash函数,存放记录的数组称为Ha 阅读全文
posted @ 2020-04-27 10:37 古加纳 阅读(216) 评论(0) 推荐(0)
2020年4月26日
找出列表中最大的数字
摘要: function maxNum($array) { if (count($array) == 1) { return $array[0]; } $num = array_shift($array); $maxNum = maxNum($array); return $num > $maxNum ? 阅读全文
posted @ 2020-04-26 15:08 古加纳 阅读(490) 评论(0) 推荐(0)
请编写一个递归函数来计算列表中包含的元素数
摘要: function counts($array) { if (empty($array)) { return 0; } array_shift($array); return 1 + counts($array);} 阅读全文
posted @ 2020-04-26 15:01 古加纳 阅读(493) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3