Android下载封装 经验

Android下载封装类

jopen 2014-09-05   23705   0

curl 操作:simple curl 经验

simple-curl 是一个简单的把 curl 操作的,封装了常用的 curl 操作功能,让你以更加 OO 的方式来使用 php 的 curl。php 的 curl 本身依赖以 libcurl,本质上来时

jopen 2015-07-14   43279   0
PHP开发   curl  

简单的 UILabel :UILabel Copyable 经验

UILabel Copyable 是一个简单的 UILabel ,它能将某些功能复制在 UILabel 上。 特性: Supports Interface Builder Supports long

b5cw 2015-04-22   9677   0

Swift 图片库:SwiftColorArt 经验

SwiftColorArt 是一款极为简洁且易用的图片库,它最大的特点就是能够根据图片色系决定所在界面背景色及字体显示颜色。 SwiftColorArt 使用简单: var swiftColorArt:SwiftColorArt

jopen 2015-01-13   11531   0

WebGL 帮助库:TWGL 经验

这个JS库的唯一目的就是让使用WebGL的API更简洁。

n6xb 2015-04-07   15196   0

PHP图表PHPlot 博客

PHPLOT 是一个用来创建图表的PHP图形,需要 PHP5 的支持。PHPLot使用PHP的GD扩展来生成 PNG/GIF/JPEG 格式图片。

webphp 2010-12-05   876   0

文件管理iOSFileManager 代码段

FileManager.h文件: #import <Foundation/Foundation.h> @interface FileManager : NSObject +(BOOL)fileExistsAtPath:(NSString *)path; +(NSString *)getDocumentsPath; +(BOOL)createDirectoryWithPath:(NSString *

b4c2 2014-12-31   4332   0

Android图片压缩 代码段

import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.InputStream;

nnkde 2015-01-06   2762   2
Android  

Android单位转换 DensityUtils 代码段

Context; import android.util.TypedValue; /** * 常用单位转换的辅助 * * * */ public class DensityUtils { private DensityUtils()

ed6y 2015-01-13   2443   0
Android  

http请求处理PHP 代码段

/** * http请求处理(基于CURL进行封装) * * @author Xiwei Ye * @version $Id$ */ class cls_http_request { /** * get方式请求(curl)

php7228 2015-01-13   2743   0
PHP  

php用于处理cookie 代码段

<?php // cookieClass // Copyright (C) 2005 JRSofty Programming. // http://jrsofty1.stinkbugonline.com // Licensed under GNU/GPL class cookieClass{ var $cName = ''; var $cTime = ''; var $cSerialize = f

6e72 2015-01-22   1115   0
PHP  

php实现简单的日历 代码段

<?php class calendar{ private $year; private $month; private $day_week; function __construct(){ $this->year=isset($_GET['year']) ? $_GET['year'] : date("Y"); $this->month=isset($_GET['month']) ? $_GET

ded3b 2015-01-23   1404   0
PHP  

php读取csv文件 代码段

<?php define("CSV_Start", 0); define("CSV_Quoted", 1); define("CSV_Quoted2", 2); define("CSV_Unquoted", 3); function readCSV($fh, $len, $delimiter = ',', $enclosure = '"') { $data = Array(); $fildNr =

gxfw 2015-04-25   719   0
PHP  

C#连接mysql 代码段

using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using System.Data; using System.Text.RegularExpressions; /// using MySql.Data.MySqlClient; namespace Name

n342 2015-04-29   995   0
C#  

php操作redies封装的 代码段

<?php /** * Redis 操作,支持 Master/Slave 的负载集群 * * @author jackluo */ class RedisCluster{ // 是否使用 M/S 的读写集群方案 private $_isUseCluster = false; // Slave 句柄标记 private $_sn = 0; // 服务器连接句柄 private $_linkHandl

n5em 2015-06-05   1839   0
PHP   redies  

C#连接MySQL的 代码段

需要mysql.data.dll c#代码 using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using System.Data; using System.Text.RegularExpressions; /// using MySql.Data.MySql

KirSNVD 2016-02-20   2049   0
MySQL   c#  

JavaScript框架 modello 经验

Modello 是一个小型的JavaScript的框架,其本身也提供了一个ajax框架。 Modello 还具有以下特性: 更少的概念,更方便的使用方法 小巧,只有两百行左右的代码

jopen 2012-05-23   17139   0

MSN通讯库 DotMSN 经验

DotMSN是一款独立的开源库,它不需要和官方的MSN Messenger交互,因此不必安装MSN Messenger就可以使用DotMSN和MSN Messenger服务通信.DotMSN是C#编写的

jopen 2011-12-20   12075   0

IOS图片压缩的 经验

IOS图片压缩的类

jopen 2013-09-20   17363   0

php开源常用总汇 经验

图表库 下面的库可以让你很简单就能创建复杂的图表和图片。当然,它们需要GD库的支持。 pChart - 一个可以创建统计图的库。 Libchart - 这也是一个简单的统计图库。 JpGraph

jopen 2015-08-24   17500   0
PHP   PHP开发  
1 2 3 4 5 6 7 8 9 10