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

代码片段 8064

#Python
Python sql server和postgresql的表结构转换

#coding=utf-8 #import _mssql import psycopg2,pymssql import types TableSpace='ABS.' class …

#Python
Python 计算已经过去多少个周末

计算已经过去多少个周末。 def weekends_between(d1,d2): days_between = (d2-d1).days weekends, leftover =…

2015-01-08 1,003

#PHP
获取某个月的最后一天或某个月的天数

//获取某个月的最后一天或某个月的天数 function getMonthLastDay ( $month, $year ) { switch ( $month ) { case …

php
2015-01-08 822

#Python
python抓取图片示例

#!/usr/bin/python # -*- coding:utf-8 -*- import re import os import urllib, urllib2, cooki…

2015-01-08 416

#PHP
查找出现次数最多的字符PHP代码

$arr=str_split($str); $arr=array_count_values($arr); arsort($arr); print_r($arr);

php
2015-01-08 893

#PHP
获得客户端使用操作系统类型的php代码

function userOS(){ $user_OSagent = $_SERVER['HTTP_USER_AGENT']; if(strpos($user_OSagent,&q…

php
2015-01-08 276

#PHP
截取中文字符串PHP代码

/** * * 中文字符串截取 * @param string $string * @param int $sublen * @param int $start * @param …

php
2015-01-08 358

#PHP
php匹配url的正则表达式

//https?://([-\w\.]+)+(:\d+)?(/([\w/_\.]*(\?\S+)?)?)? //PHP Example: Automatically link UR…

php
2015-01-08 567

#PHP
图片缩放水印PHP类

/** * 图片缩放水印类 * */ class cls_photo { protected $waterrate = 0.2; //水印图标在图片上的比例 protected $…

php
2015-01-08 263

#Ruby
Ruby 通过 SSH 拷贝文件到其他机器

require 'rubygems' require 'net/ssh' def copy_file(session, source_path, destination_path=…

2015-01-08 861

#Java
commons-dbcp 连接池使用

dbcp 是 apache 上的一个 java 连接池项目,也是 tomcat 使用的连接池组件。单独使用dbcp需要3个包:common-dbcp.jar,common-pool…

2015-01-08 1,013

#PHP
PHP 对 png 图像进行缩放,支持透明背景

function smart_resize_image( $file, $width = 0, $height = 0, $proportional = false, $outpu…

php
2015-01-08 856