摘要: windows: \n 换行到新行mac: \r 换行到新行linux: \n\r 换行到新行 阅读全文
posted @ 2018-06-20 17:23 qqisnow2021 阅读(104) 评论(0) 推荐(0)
摘要: session_start();setcookie("a","value");print $_COOKIE['a'];如果没有开头的session_start就不会有有效的cookie值- setcookie — 发送 Cookie 和我们以前想的不一样,这里的 发送时 server吧这个变量随着h 阅读全文
posted @ 2018-06-20 16:57 qqisnow2021 阅读(556) 评论(0) 推荐(0)
摘要: magic quote gpc的来龙去脉 https://ithelp.ithome.com.tw/articles/10113856htmlspeicalchars有很多是选项 http://www.w3school.com.cn/php/func_string_htmlspecialchars. 阅读全文
posted @ 2018-06-20 16:51 qqisnow2021 阅读(77) 评论(0) 推荐(0)
摘要: $int = ((float)0.58*100);$int = (int)$int;echo $int; 57- 结论不要用int去转化float, 不然会出现误差 阅读全文
posted @ 2018-06-20 15:22 qqisnow2021 阅读(126) 评论(0) 推荐(0)