php
Jack930820
这个作者很懒,什么都没留下…
展开
-
php笔记
1.配置浏览器打开的端口 tool->部署->配置里面新建一个就可以了原创 2015-03-29 09:47:48 · 364 阅读 · 0 评论 -
mysql 常用语句
终端命令 需要加了;之后才会执行 1.mysql -u root -p (mysql用户登录),可以换账户 root可以换成别的用户名; 2. insert into mysql.user(Host,User,Password) values("localhost","phplamp",password("1234"));创建账户 3.select host,user from m原创 2015-03-29 11:07:03 · 297 阅读 · 0 评论 -
php常见错误
1.echo 中文输出乱码 echo iconv("UTF-8","GB2312",‘中文’);原创 2015-11-08 16:22:51 · 332 阅读 · 0 评论 -
phpstorm
1.language injection 在php需要编辑html的地方先输入一个完整的p标签 然后使用alt+enter可以弹出edit html fragment点击就可以在下面的框里面编辑html语言了。其它语言也是可以的 2.live template 代码片段,选中php设置关键字和使用的语言原创 2015-10-25 20:34:53 · 384 阅读 · 0 评论 -
apache ssl 配置
1. Run the following command, to create server.key and server.crt files: $ openssl req -new -x509 -nodes -out server.crt -keyout server.key These can be used as follows in your httpd.conf file:原创 2016-04-10 23:28:46 · 450 阅读 · 0 评论