[php]An example of excel output
<?php header("Content-type:application/vnd.ms-excel"); header("Content-Disposition:attachment;filename=Export_test.xls"); $tab="\t"; $br="\n"; $head="NO.".$tab."Message".$br; echo $head.$br; echo "test321318312".$tab; echo "string1"; echo $br; echo "330181199006061234".$tab...标签: php
[C]比最简单的程序更简单的C程序
在C语言里面,你以为"Hello world"真的就是最简单的程序了么? Anycle来告诉你,还有比“Hello world”更简单的C语言程序,我们直接上代码: void main(){} 哈哈,看到没,简单吧,没有头文件,没有任何输入,没有任何输出,没有任何动作。 gcc 编译后只有8K左右。标签: C
[C]gettimeofday()
#include <stdio.h> #include <sys/time.h> #include <string.h> void test_gettimeofday(){ struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz); printf("tv.tv_sec = %d , tv.tv_usec = %d \n", tv.tv_sec, tv.tv_usec); prin...标签: C
[C]strtok()
#include <stdio.h> #include <string.h> void main(){ char str[] = "i am nicholas"; char *ret = NULL; ret = strtok(str, " "); printf("ret:%s\n", ret); while(ret = strtok(NULL, " ")){ printf("ret:%s\n", ret); } }标签: C
[C]Why function getenv() return a minus value
In the case include no stdlib.h file, the function getenv() return a minus value. #include <stdio.h> #include <stdlib.h> void main(){ int rc; char *env = NULL; env = getenv("LIB"); printf("&env = %d \n", env); if(env){ printf("config home:%d\n", env); } ...标签: C
[C]GetEnvironmentVariable function
Retrieves the contents of the specified variable from the environment block of the calling process. Syntax: DWORD WINAPI GetEnvironmentVariable( _In_opt_ LPCTSTR lpName, _Out_opt_ LPTSTR lpBuffer, _In_ DWORD nSize ); Parameters...标签: C
[ubuntu]How to install and config samba in ubuntu
1、使用下列命令安装samba sudo apt-get install samba sudo apt-get install smbfs Or: sudo apt-get install samba samba-common 2、创建一个文件夹 mkdir ~/UbuntuShare sudo chmod 777 ~/UbuntuShare 3、添加一个用户 sudo useradd ShareUseName 4、配置samba ①备份一下配置文件 sudo cp /etc/samba/smb.conf /etc/samba/smb.conf.bak ②...标签: ubuntu
[JS]一段特别代码分分钟让设备死机
<html> <body> <script> var total=""; var i=1; while(i++){ total = total+i.toString(); history.pushState(0,0,total); } </script> </body> </html>标签: JS
[php]PHP中数组的复制
在PHP中有一个数组 $a=array("a","b","c"); 另有一个数组 $b=array(); 如果你这样传值: $b=$a; 这其实是传的指针,当a改变,b也会跟着变。 正确的做法: foreach($a as $ele){ $b[] = $ele; }标签: php
sqlite的使用
下载sqlite3.exe, 然后打开控制台运行之, sqlite3.exe .svn/wc.db "select * from work_queue"; 其中第一个参数是数据库文件,第二个参数是SQL语句; 嗯,应该还有更多用法,今天只这样了。标签: MySQL
日历
最新微语
- 有的时候,会站在分叉路口,不知道向左还是右
2023-12-26 15:34
- 繁花乱开,鸟雀逐风。心自宁静,纷扰不闻。
2023-03-14 09:56
- 对于不可控的事,我们保持乐观,对于可控的事情,我们保持谨慎。
2023-02-09 11:03
- 小时候,
暑假意味着无忧无虑地玩很长一段时间,
节假意味着好吃好喝还有很多长期不见的小朋友来玩...
长大后,
这是女儿第一个暑假,
一个半月...
2022-07-11 08:54
- Watching the autumn leaves falling as you grow older together
2018-10-25 09:45
分类
最新评论
- Goonog
i get it now :) - 萧
@Fluzak:The web host... - Fluzak
Nice blog here! Also... - Albertarive
In my opinion you co... - ChesterHep
What does it plan? - ChesterHep
No, opposite. - mojoheadz
Everything is OK!... - Josephmaigh
I just want to say t... - ChesterHep
What good topic - AnthonyBub
Certainly, never it ...