上一页 1 2 3 4 5 6 ··· 11 下一页
摘要: ``` '; require('reusable.php'); echo 'The script will end now.'; /* there are three situations here 1. if the reusable.php are those codes, which includes php tags '; ?> then, codes will be processed 阅读全文
posted @ 2020-01-26 23:40 Coding_Changes_LIfe 阅读(140) 评论(0) 推荐(0) 编辑
摘要: how does php work with Apache? https://stillat.com/blog/2014/04/02/how does php work with the web server and browser 阅读全文
posted @ 2020-01-26 19:10 Coding_Changes_LIfe 阅读(101) 评论(0) 推荐(0) 编辑
摘要: ``` "; //3. htmlspecialchars() conflict with html tags $new = htmlspecialchars("Test"); echo $new; // <a href='test'>Test</a> $new = htmlspecialchars("Test", ENT_QUOTES); echo $new; // <a href='test'> 阅读全文
posted @ 2020-01-25 21:06 Coding_Changes_LIfe 阅读(151) 评论(0) 推荐(0) 编辑
摘要: ``` '; //var_dump($numbers); //var_dump($odds); //var_dump($letters); $a[3] = 4; //automatically resize the array //4 $student = ['amy', 'joseph', 'mike']; //read array for ($i = 0; $i 89, 'joseph' => 阅读全文
posted @ 2020-01-23 19:27 Coding_Changes_LIfe 阅读(106) 评论(0) 推荐(0) 编辑
摘要: simple functions 阅读全文
posted @ 2020-01-23 12:00 Coding_Changes_LIfe 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 1,执行Linux命令 2.为变量起别名 <?php $a = [1,2,3]; $b = [4,2,3]; print_r($a+$b); print_r($b+$a); ``` 阅读全文
posted @ 2020-01-19 22:15 Coding_Changes_LIfe 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 1、LInux操作系统发展与演变 ENIARC: CUP:运算器、控制器。寄存器、缓存 存储器:内存、RAM Input:指令+数据 Output:结果 程序:指令+数据 算法+数据结构 字节是最小存储单位,cpu以字节的形式进行读取,32位操作系统一次可以读取32bit 2^32=2^2 * 2^ 阅读全文
posted @ 2019-12-02 11:48 Coding_Changes_LIfe 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 知识 =》技能 需要大量的练习 相当于复盘 要有成就感 在一个领域深挖,再迁移到其他领域 1、两周以后的知识留存率: 主动学习: 动手实践:40% 讲给别人听:70% 写博客:是写教程,便于以后复习(必须完成) 5W+1H(what, why, when, where,who, How) 被动学习: 阅读全文
posted @ 2019-12-01 10:23 Coding_Changes_LIfe 阅读(157) 评论(0) 推荐(0) 编辑
摘要: https://www.bilibili.com/bangumi/media/md11653495/?spm_id_from=666.10.b_62616e67756d695f64657461696c.2 阅读全文
posted @ 2019-10-29 11:17 Coding_Changes_LIfe 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 建数据库的时候,已经选择了编码格式为UTF-8但是用PDM生成的脚本导进去的时候却奇怪的发现表和表的字段的编码格式却是GBK,一个一个却又觉得麻烦,在网上找了一下办法一个是修改表的编码格式的ALTER TABLE `table` DEFAULT CHARACTER SET utf8;但是虽然修改了表 阅读全文
posted @ 2019-10-28 15:41 Coding_Changes_LIfe 阅读(583) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 11 下一页