首页 软件开发 代码片段 ( Page 583 )

代码片段 8064

#Golang
Go语言中访问MySql

首先安装mysql的go语言驱动 go get github.com/ziutek/mymysql/godrv 演示代码 package users import ( "…

2015-01-19 992

#PHP
简单的PHP分页函数

<?php /* * Created on 2011-07-28 * Author : LKK , http://lianq.net * 使用方法: require_once…

php
2015-01-18 803

#PHP
php读写文件代码

save_file.php代码 <?php session_start(); $handle = fopen($_POST['original_file_name'], &q…

php
2015-01-18 459

#PHP
PHP下载远程图片保存到本地

<?php function get_file($url,$folder,$pic_name){ set_time_limit(24*60*60); //限制最大的执行时间 …

php
2015-01-18 965

#Java
Android MD5加密算法

import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; public …

2015-01-18 288

#SQL
求整数的逆序数

DECLARE @INPUT BIGINT,@RESULT BIGINT SET @INPUT=1234 SET @RESULT=0 while @INPUT>0 BEGIN…

sql
2015-01-18 134

#PHP
依据图片色界在不同位置加水印的PHP类

function add_wm($nmw_water, $src_file, $output_file, $x, $y) { if(file_exists($output_file…

php
2015-01-18 425

#Objective-C
十六进制字符串转数字

+ (NSNumber *) numberHexString:(NSString *)aHexString { // 为空,直接返回. if (nil == aHexString)…

2015-01-18 966

#PHP
PHP获取内存使用信息

echo "Initial: ".memory_get_usage()." bytes \n"; /* prints Initial: 36…

php
2015-01-18 594

#PHP
PHP解压缩 Zip 文件

/********************** *@file - path to zip file *@destination - destination directory fo…

php
2015-01-18 503

#PHP
生成图片缩略图PHP函数

<?php /** * 生成缩略图函数(支持图片格式:gif、jpeg、png和bmp) * @author ruxing.li * @param string $src 源…

php
2015-01-18 697