摘要:
PEAR 是“PHP Extension and Application Repository”的缩写,即PHP扩展和应用仓库。 PEAR 将PHP程序开发过程中常用的功能编写成类库,涵盖了页面呈现、数据库访问、文件操作、数据结构、缓存操作、网络协议、WebService 等许多方面,用户可以通过下 阅读全文
摘要:
上面是英文,下面有中文解释。 CGI CGI, Common Gateway Interface, is a tool for HTTP server to contact with programs on other servers, which can be used into any lang 阅读全文
摘要:
(整理中) 在 python 中,类型属于对象,变量是没有类型的: 以上代码中,[1,2,3] 是 List 类型,"Runoob" 是 String 类型,而变量 a 是没有类型,她仅仅是一个对象的引用(一个指针),可以是 List 类型对象,也可以指向 String 类型对象。 可更改(muta 阅读全文
摘要:
停止正在运行的MySQL进程 killall -TERM mysqld 2、以安全模式启动MySQL Linux下,运行 /usr/local/mysql/bin/mysqld_safe --skip-grant-tables & 3. 完成以后就可以不用密码进入MySQL了 /usr/local/ 阅读全文
摘要:
转自http://zhangxugg-163-com.iteye.com/blog/1894990 1.什么是mysqlnd驱动? PHP手册上的描述: MySQL Native Driver is a replacement for the MySQL Client Library (libmys 阅读全文
摘要:
# which mysqld /usr/local/mysql/bin/mysqld # /usr/local/mysql/bin/mysqld --verbose --help |grep -A 1 'Default options' 2016-06-02 16:49:39 0 [Note] /u 阅读全文
摘要:
详情查阅mysql手册 https://dev.mysql.com/doc/refman/5.7/en/mysqld-safe.html mysqld_safe is the recommended way to start a mysqld server on Unix. mysqld_safe 阅读全文
摘要:
参考网友文章,问题已解决,文章链接 刚刚学习SHELL 写了一个简单的例子发生如下错误 -bash: ./test.sh: /bin/bash^M: bad interpreter: No such file or directory VI打开文件,没发现任何问题, 把/bin/bash改成/bin 阅读全文
摘要:
mixed set_error_handler ( callable $error_handler [, int $error_types = E_ALL | E_STRICT ] ),用来设置一个用户定义的错误处理函数 使用此函数时,注意第二个参数$error_types: 就像error_rep 阅读全文
摘要:
今天做shell脚本,来自动更新web项目版本,但是遇到了一个问题 一开始百度查找原因,没找到,百思不得其解,后来在qq群里求助,热心的群友告诉我,是不是这个文件被锁定了,建议我用chattr -i命令,于是我开始学习chattr 以下介绍摘自菜鸟教程 Linux chattr命令用于改变文件属性。 阅读全文