好好爱自己!

摘要: 将一个指定的对象的原型设置为另一个对象或者null(既对象的[[Prototype]]内部属性). 语法 参数 阅读全文
posted @ 2016-11-16 21:09 立志做一个好的程序员 阅读(11752) 评论(0) 推荐(0) 编辑
摘要: Run PHP from the command line Run PHP from the command line up vote5down votefavorite 3 I have installed XAMPP v1.8.3 for my PHP development. I am new 阅读全文
posted @ 2016-11-16 19:58 立志做一个好的程序员 阅读(1619) 评论(0) 推荐(0) 编辑
摘要: 原文 https://vpsineu.com/blog/how-to-build-and-install-php-5-6-9-from-source-on-ubuntu-14-04-vps/ In this tutorial we will show you how to build and ins 阅读全文
posted @ 2016-11-16 19:19 立志做一个好的程序员 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.cnblogs.com/wanhl/archive/2012/10/17/2727607.html 一、帐号密码保存。可以保存多个vps登陆信息,免去每次输入的烦恼。 二、数字小键盘输入。如果不设置的话,输入数字小键盘,会显示乱码。如图设置即可:三、设置文字颜色。如图设置 阅读全文
posted @ 2016-11-16 17:58 立志做一个好的程序员 阅读(1026) 评论(0) 推荐(0) 编辑
摘要: 参考: https://vpsineu.com/blog/how-to-build-and-install-php-5-6-9-from-source-on-ubuntu-14-04-vps/ 直接 wget http://sg2.php.net/get/php-5.6.28.tar.gz/from 阅读全文
posted @ 2016-11-16 16:58 立志做一个好的程序员 阅读(659) 评论(0) 推荐(0) 编辑
摘要: 参考:http://stackoverflow.com/questions/650764/how-does-proto-differ-from-constructor-prototype http://blog.rainy.im/ __proto__ is the actual object tha 阅读全文
posted @ 2016-11-16 15:49 立志做一个好的程序员 阅读(2717) 评论(1) 推荐(1) 编辑
摘要: I found that both the Array Object and Array.prototype have the length property. I am confused on using the Array.length property. How do you use it? 阅读全文
posted @ 2016-11-16 13:36 立志做一个好的程序员 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 原文: http://www.cnblogs.com/idche/archive/2012/03/17/2403894.html Array.prototype.push push向数组尾部添加一项并更新length ,返回数组长度。 如果Object使用push会怎样? 看下面代码, obj好像数 阅读全文
posted @ 2016-11-16 13:19 立志做一个好的程序员 阅读(6356) 评论(0) 推荐(0) 编辑
摘要: 原文: http://blog.thankbabe.com/2016/09/14/high-concurrency-scheme/?from=sf 前言 高并发经常会发生在有大活跃用户量,用户高聚集的业务场景中,如:秒杀活动,定时领取红包等。为了让业务可以流畅的运行并且给用户一个好的交互体验,我们需 阅读全文
posted @ 2016-11-16 11:38 立志做一个好的程序员 阅读(351) 评论(0) 推荐(0) 编辑
摘要: 原文: http://blog.csdn.net/21aspnet/article/details/7389427 php缓冲 output_buffering和ob_start buffer buffer是一个内存地址空间,Linux系统默认大小一般为4096(4kb),即一个内存页。主要用于存储 阅读全文
posted @ 2016-11-16 11:36 立志做一个好的程序员 阅读(657) 评论(0) 推荐(0) 编辑
摘要: Developer deals with arrays every day. Being a collection, an important property to query is the number of items: Array.prototype.length. In JavaScrip 阅读全文
posted @ 2016-11-16 11:09 立志做一个好的程序员 阅读(385) 评论(0) 推荐(0) 编辑
摘要: 原文:http://blog.mgechev.com/2015/03/09/build-learn-your-own-light-lightweight-angularjs/ Build Your own Simplified AngularJS in 200 Lines of JavaScript 阅读全文
posted @ 2016-11-16 11:04 立志做一个好的程序员 阅读(370) 评论(0) 推荐(0) 编辑
摘要: 原文: https://www.v2ex.com/t/312651 在 2016 年做 PHP 开发是一种什么样的体验?(一) 嘿,我最近接到一个网站开发的项目,不过老实说,我这两年没怎么接触编程,听说 Web 技术已经发生了一些变化。听说你是这里对新技术最了解的开发工程师? 你算是找对人了。我对今 阅读全文
posted @ 2016-11-16 09:41 立志做一个好的程序员 阅读(419) 评论(0) 推荐(0) 编辑
摘要: 原文: http://blog.thankbabe.com/2016/04/01/high-concurrency/ 大话程序猿眼里的高并发 2016-04-01 YYQ 高并发 高并发 负载均衡 并发 锁 事务 集群 2016-04-01 YYQ 高并发 高并发 负载均衡 并发 锁 事务 集群 高 阅读全文
posted @ 2016-11-16 09:18 立志做一个好的程序员 阅读(195) 评论(0) 推荐(0) 编辑
摘要: PHP防止重复提交表单 2016-11-08 轻松学PHP 我们提交表单的时候,不能忽视的一个限制是防止用户重复提交表单,因为有可能用户连续点击了提交按钮或者是攻击者恶意提交数据,那么我们在提交数据后的处理如修改或添加数据到数据库时就会惹上麻烦。 那么如何规避这中重复提交表单的现象出现呢?我们可以从 阅读全文
posted @ 2016-11-16 00:38 立志做一个好的程序员 阅读(1503) 评论(0) 推荐(0) 编辑

不断学习创作,与自己快乐相处