Quantcast
Channel: 点滴记忆 - 2015年1月
Browsing latest articles
Browse All 3 View Live

SinglePHP 1.0 发布了

终于发布了,不容易啊。 https://github.com/nly/SinglePHP/releases 肯定还不够完善,继续加油!

View Article



HTTP Methods: GET vs. POST

The two most used HTTP methods are: GET and POST. What is HTTP? The Hypertext Transfer Protocol (HTTP) is designed to enable communications between clients and servers. HTTP works as a...

View Article

两整数交换 异或实现

#include <stdio.h> void swap(int a, int b); int main(int argc, char *argv[]) { swap(1,2); return 0; } void swap(int a, int b) { printf("%d %d\n", a, b); // 1 2 a = a^b; printf("%d %d\n", a, b);...

View Article
Browsing latest articles
Browse All 3 View Live




Latest Images