配置开启ssh服务
2019-6-21 dingshangchao 服务器
centos一般是默认安装和开启ssh服务的,但如果没有就需要安装和开启
小程序60多个入口
2019-6-13 dingshangchao 其它
这些入口大体分为线上与线下两个方向:从线上看,主要有公众号、会话、广告、搜索、App跳转等场景,从线下看,有扫码、附近小程序等等。ThinkPHP之__construct()和__initialize()
2019-6-6 dingshangchao php开发
ThinkPHP中的__initialize()和类的构造函数__construct()
1、__initialize()不是php类中的函数,php类的构造函数只有__construct().
2、类的初始化:子类如果有自己的构造函数(__construct()),则调用自己的进行初始化,如果没有,则调用父类的构造函数进行自己的初始化。
3、当子类和父类都有__construct()函数的时候,如果要在初始化子类的时候同时调用父类的__constrcut(),则可以在子类中使用parent::__construct().
linux关于用户和群组的常用命令
2019-5-31 dingshangchao 服务器
linux系统下操作用户和群组的常用命令标签: linux
细说MySQL的时间戳(Timestamp)类型
2019-5-24 dingshangchao 数据库
生产环境中部署着各种版本的MySQL,包括MySQL 5.5/5.6/5.7三个大版本和N个小版本,由于MySQL在向上兼容性较差,导致相同SQL在不同版本上表现各异,下面从几个方面来详细介绍时间戳数据类型。yum常用命令
2019-5-17 dingshangchao 服务器
标签: yum的命令形式一般是如下:yum [options] [command] [package ...]
PHP 7.4 新语法:箭头函数
2019-5-10 dingshangchao php开发
短闭包,也叫做箭头函数,是一种用 php 编写的短函数。系统权限设计(五张表)
2019-4-30 dingshangchao php开发
大致用到5张表:三张主表,两张从表
对mysql数据库初始化过程中报错 Could not find ./bin/my_print_defaults
2019-4-26 dingshangchao 数据库
1
2
3
4
5
6
7
|
[root@localhost scripts]# ./mysql_install_db --user=mysql
FATAL ERROR: Could not find ./bin/my_print_defaults
If you compiled from source, you need to run 'make install' to
copy the software into the correct location ready for operation.
If you are using a binary release, you must either be at the top
level of the extracted archive, or pass the --basedir option
pointing to that location.
|
mysql修改用户密码的方法及命令
2019-4-17 dingshangchao 数据库
mysql修改用户密码的几种方法标签: 数据库