随笔分类 -  php

摘要:输出 参考: https://www.w3school.com.cn/php/php_ref_array.asp 阅读全文
posted @ 2019-07-29 01:48 anobscureretreat 阅读(528) 评论(0) 推荐(0) 编辑
摘要:https://www.php.net/manual/zh/control-structures.foreach.php 阅读全文
posted @ 2019-07-29 01:47 anobscureretreat 阅读(142) 评论(0) 推荐(0) 编辑
摘要:说明:unset ( mixed $var [, mixed $... ] ) : void unset() 销毁指定的变量。 unset() 在函数中的行为会依赖于想要销毁的变量的类型而有所不同。 如果在函数中 unset() 一个全局变量,则只是局部变量被销毁,而在调用环境中的变量将保持调用 u 阅读全文
posted @ 2019-07-29 01:46 anobscureretreat 阅读(280) 评论(0) 推荐(0) 编辑
摘要:由上到下,依次递减,同行优先级相同。 参考: https://www.php.net/manual/zh/language.operators.precedence.php 阅读全文
posted @ 2019-07-27 20:20 anobscureretreat 阅读(1010) 评论(0) 推荐(0) 编辑
摘要:输出 阅读全文
posted @ 2019-07-27 00:12 anobscureretreat 阅读(513) 评论(0) 推荐(0) 编辑
摘要:#与选中内容匹配的内容背景色Editor -> Color Scheme -> General -> Code -> Identifier under caret #选中内容前景色Editor -> Color Scheme -> General -> Editor -> Selection for 阅读全文
posted @ 2019-07-25 00:18 anobscureretreat 阅读(1138) 评论(0) 推荐(0) 编辑
摘要:如图,修改如下浏览器的位置,由于我安装了虚拟机,导致每次点击谷歌浏览器后,都是打开的虚拟机里面的谷歌浏览器,需要重新设置浏览器的位置 打开设置 打开浏览器设置界面 双击可以选择浏览器的路径,然后就可以指定浏览器。 阅读全文
posted @ 2019-07-16 21:42 anobscureretreat 阅读(802) 评论(0) 推荐(0) 编辑
摘要:创建 cookie 取回 Cookie 的值 isset() 函数来确认是否已设置了 cookie "; else echo "Welcome guest!"; ?> 删除 cookie 阅读全文
posted @ 2019-07-16 21:11 anobscureretreat 阅读(209) 评论(0) 推荐(0) 编辑
摘要:try{ //解析config.ini文件 $config = parse_ini_file(realpath(dirname(__FILE__) . '/config/config.ini')); //对mysqli类进行实例化 $mysqli = new mysqli($config['host 阅读全文
posted @ 2019-07-16 21:11 anobscureretreat 阅读(145) 评论(0) 推荐(0) 编辑
摘要:a.php b.php 阅读全文
posted @ 2019-07-16 14:36 anobscureretreat 阅读(282) 评论(0) 推荐(0) 编辑
摘要:<?php$arr = array('Hello','World!','I','love','Shanghai!');echo implode(" ",$arr);?> Hello World! I love Shanghai! 阅读全文
posted @ 2019-07-16 13:59 anobscureretreat 阅读(451) 评论(0) 推荐(0) 编辑
摘要:connect_error) { die("连接失败: " . $conn->connect_error); } echo "连接成功"; ?> getMessage(); } ?> 阅读全文
posted @ 2019-07-16 12:40 anobscureretreat 阅读(525) 评论(0) 推荐(0) 编辑
摘要:下载https://www.mamp.info/en/downloads/ MAMP PRO will create copies of the MySQL databases located in /Applications/MAMP/db/mysql57 and store them in /L 阅读全文
posted @ 2019-07-16 12:38 anobscureretreat 阅读(554) 评论(0) 推荐(0) 编辑
摘要:ini_set("display_errors","On");error_reporting(E_ALL); https://blog.csdn.net/itxiaolong3/article/details/81748321 阅读全文
posted @ 2019-07-16 12:35 anobscureretreat 阅读(1579) 评论(0) 推荐(0) 编辑
摘要:了解下include、include_once、require和require_once这4个函数: include函数:会将指定的文件读入并且执行里面的程序; require函数:会将目标文件的内容读入,并且把自己本身代换成这些读入的内容; include_once 函数:在脚本执行期间包含并运行 阅读全文
posted @ 2019-07-14 16:13 anobscureretreat 阅读(314) 评论(0) 推荐(0) 编辑
摘要:重新安装PHP 安装php7.1 会提示安装在哪里 点击配置 配置cgi,将/usr/local/opt/php@7.1/bin 粘贴到下方输入框中,就会自动补全 新建文件,在PHPstorm 中打开 如图 结果 参考: https://www.jianshu.com/p/abea83253671 阅读全文
posted @ 2019-07-14 14:24 anobscureretreat 阅读(882) 评论(0) 推荐(0) 编辑
摘要:https://xdebug.org/download.php 阅读全文
posted @ 2019-07-14 13:30 anobscureretreat 阅读(409) 评论(0) 推荐(0) 编辑
摘要:https://php.net/manual/en/configuration.file.php 阅读全文
posted @ 2019-07-14 11:04 anobscureretreat 阅读(115) 评论(0) 推荐(0) 编辑
摘要:打开php.ini配置文件,找到extension=php_pdo.dll 和 extension=php_pdo_mysql.dll ,去掉前面“;”的注释,修改后的两行配置内容如下: extension=php_pdo.dllextension=php_pdo_mysql.dll https:/ 阅读全文
posted @ 2019-07-14 11:01 anobscureretreat 阅读(1234) 评论(0) 推荐(0) 编辑
摘要:cd /etc sudo cp php.ini.default php.ini 阅读全文
posted @ 2019-07-14 10:59 anobscureretreat 阅读(163) 评论(0) 推荐(0) 编辑