摘要:
1、根据hostname获取IPmain.cpp:#include <QCoreApplication>#include"noarp.h" int main(int argc, char *argv[]){ QCoreApplication a(argc, argv); char iname[128 阅读全文
摘要:
获取阳历对应的阴历日期: /////////////////////////////////////////////////////////////////////////////////////////////////////stdcal.h: #ifndef __STDCAL_H#define 阅读全文
摘要:
获得某一天是这一年中的第几天如:./g 20117/2/132 #include <time.h>#include <string.h>#include <stdio.h> const char SPLIT1[2]="-";const char SPLIT2[2]="/";const char SP 阅读全文
摘要:
C语言获取int位数: int intlen(int num){/*参数:要获取长度的int类型数据返回值:返回长度*/ int tmpn=num; int len=1; while(tmpn/=10) len++; return len;} C语言int类型转char *类型: void into 阅读全文
摘要:
C语言数组/char * 以二进制形式输出: #include <stdio.h> #include <string.h> void strtobit(char *chr){/* chr是要以二进制形式输出的字符串的值*/ char *pchr=chr; int i,j; for(i=0;i<str 阅读全文
摘要:
C语言char类型(1字节)以二进制形式输出: #include<stdio.h> void chrtobit(char chr)/* chr是要以二进制形式输出的char值*/{ char tchr=chr; int i; for(i=7;i>=0;i--) { char tmpc=tchr; t 阅读全文
摘要:
C语言int类型(4字节)以二进制形式输出: #include<stdio.h> void intobit(int num)/*num是要以二进制形式输出的int值将二进制数据逐个置1,在右移,依次实现逐个输出*/{ int tnum=num; int i; for(i=31;i>=0;i--) { 阅读全文
摘要:
(LAMP)禁止客户端浏览器显示PHP代码错误,将错误信息保存到日志文件中:在php配置文件中找到php.ini(如在Centos6.7下的/etc/php.ini中),设置 display_errors = Off //不允许在浏览器中显示错误信息 log_errors = On //将错误信息输 阅读全文
摘要:
php.ini配置文件: engine=On;使PHP脚本语言引擎在Apache下有效。当设置engine=Off后不能解析PHP文件。 short_open_tag=Off;设置<? code ?>标志是否能被识别。设置short_open_tag=Off后不能识别在<? code ?>中的代码 阅读全文
摘要:
通过日期计算某一天是这一年中的第几天 /*val 要传入的日期字符串,如2017/8/4*/#include <time.h>#include <string.h>#include <stdio.h> const char SPLIT1[2]="-";const char SPLIT2[2]="/" 阅读全文