摘要:
1 public function guid(){ 2 //检测是否存在函数 3 if (function_exists('com_create_guid')){ 4 //创建全局唯一UUID标识. 5 return com_create_guid(); 6 } else { 7 //随机数生成器. 阅读全文
摘要:
这个示例主要演示的是在多进程操作数据库时,如何避免并发重复数据入库的例子。 过多的线程理论不再阐述,网上、书上皆有。 项目采用 Asp.Net Framework 4.5 / Mysql 5.4 数据库。 首先创建一个 LockInsertDB.cs 文件,这个文件用来实现数据库添加; 1 usin 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace DBImportTool.Sgile{ //第一种单例模式 阅读全文
摘要:
/// <summary>/// MD5 字符串加密 /// </summary>/// <param name="str">需要加密的字符串</param>/// <returns></returns>public static string StringToMD5(string str){ by 阅读全文
摘要:
创建指定的文件:1//创建指定的文件2privatefunctioncreatefile(){3$savepath="E:\\WorkingSites\\PhpDemo\\InitPHPFrame\\demo\\app\\web\\controller\\demo\\";//文件物理路径4$file... 阅读全文
摘要:
获取select 选中的 text :$("#ddlRegType").find("option:selected").text();获取select选中的 value:$("#ddlRegType ").val();获取select选中的索引:$("#ddlRegType ").get(0).se... 阅读全文
摘要:
基本语法:mysqldump-u[mysql账户名]-p[--default-character-set=utf8][--max_allowed_packet=50M]数据库名>文件保存路径.示例:mysqldump-uroot-p--default-character-set=utf8--max_... 阅读全文
摘要:
第一步:在运行中输入cmd 命令,如图:第二步:在cmd命令提示符中键入路径并定位到你的apache安装文件下的bin目录,如图:第三步:继续输入命令字符串httpd.exe -w -n "Apache2.2" -k start,如下图:这样便可以启动apache服务了,如果apache配置文件有错... 阅读全文