数据库配置请根据自己的数据库文件来修改。 <?php header('Content-type:text/html;charset=utf-8');define('DB_HOST','localhost');define('DB_USER','数据库用户名');define('DB_PASSWORD ...
分类:
其他好文 时间:
2021-05-24 15:10:20
阅读次数:
0
往期周报汇总地址:http://www.armbbs.cn/forum.php?mod=forumdisplay&fid=12&filter=typeid&typeid=104 1、Arduino为STM32H7做的开源工控底板 原理图是开源的,大家有兴趣看看有没有值得借鉴的地方。 这个底板是为他们 ...
分类:
其他好文 时间:
2021-05-24 15:04:54
阅读次数:
0
第一步:将下载的源码包上传到你的网站根目录下面;打开网站如果出现Dir ,把install_lock.txt删掉,再把有.bak的重命名删除即可。 第二步:打开浏览器 输入http://你的网址/install/index.php 当打开安装页面的时候,你就会看到以下页面 如 果没有出现该页面,而是 ...
分类:
其他好文 时间:
2021-05-24 14:49:41
阅读次数:
0
安装出现错误:kernel panic not syncing:fatal exception 背景:Hpye-V已经关闭,bcdedit /set hypervisorlaunchtype off也关闭了服务,安装Centos7成功并能运行 解决:【编辑虚拟机设置】移除【USB】【声卡】【打印机】 ...
分类:
系统相关 时间:
2021-05-24 14:34:13
阅读次数:
0
<?php class A{ function index (){ echo '我是A的index'; } } class B{ function index (){ echo '我是B的index'; } } class C{ function index (){ echo '我是C的index' ...
分类:
Web程序 时间:
2021-05-24 14:24:42
阅读次数:
0
static::、self::、new self()、new static() <?php class Father{ protected static $name = "大头"; public static function father_self(){ echo self::$name."\n" ...
分类:
其他好文 时间:
2021-05-24 14:21:29
阅读次数:
0
1. 开启Prometheus遥测数据 默认情况下, 遥测功能(telemetry)是关闭的(selector 为 none),像这样: telemetry: selector: ${SW_TELEMETRY:none} none: prometheus: host: ${SW_TELEMETRY_ ...
分类:
Web程序 时间:
2021-05-24 14:20:53
阅读次数:
0
问题描述: 在三台centos7上配置mongo副本集, 三节点启动 docker run -d --name mongoconfig \ -p 26001:27019 \ -v /root/data/soft/mongo/configdb:/data/configdb \ \mongo:4.0.2 ...
分类:
其他好文 时间:
2021-05-24 13:49:16
阅读次数:
0
安装 javaee jdk mysql apache ideaIU shell编程 x.sh脚本 格式要求: 1.脚本以#!/bin/bash开头 2.脚本要有可执行权限 vim hello.sh 写上: #!/bin/bash echo "hello,world" 保存退出 sh hello.sh ...
分类:
系统相关 时间:
2021-05-24 13:41:21
阅读次数:
0
<?php class One{ private static $_one; private function __construct(){} private function __clone(){} public static function getOne(){ if(!self::$_one ...
分类:
Web程序 时间:
2021-05-24 13:36:59
阅读次数:
0