一个简单的正则表达式清理不需要的字符function setDescriptionString($inputString=""){$replacedWords = array("…","‘","ó","<ul>","<li&……继续阅读 » 4年前 (2021-03-22) 1351浏览 890个赞
PHP读取远程文件function urlfopen($url, $limit = 0, $post = '', $cookie = '', $bysocket = FALSE , $ip = '', $timeout = 15, $block = TRUE, $encodetype =……继续阅读 » 4年前 (2021-03-22) 1562浏览 1394个赞
php从上传的文件创建缩略图<? if ($_REQUEST['action']=="add"){ $userfile = $HTTP_POST_FILES['photo']['tmp_name']; $userfile_name = $HTTP_POST_FI……继续阅读 » 4年前 (2021-03-22) 2521浏览 1112个赞
这个类可以在网上搜索,使用了Bing搜索API。它可以发送HTTP请求到Bing搜索API的Web服务器执行搜索Web内容使用以前获得的API密钥。类可以搜索网页,图片,视频,新闻和相关的关键字。<? class BingAPI{ var $accountKey = ''; var $ServiceRoo……继续阅读 » 4年前 (2021-03-22) 2848浏览 2472个赞
php获得网站访问统计信息的类Compete API,Compete是一个专门用来统计网站信息的网站<?php// Check for dependenciesif (!function_exists('curl_init')) throw new Exception('Compete needs the C……继续阅读 » 4年前 (2021-03-22) 1907浏览 2696个赞
这个seo类的功能包括:– 检查指定的网站响应– 获取从该网站主页的语言和其他meta标签数据的– 获取网站的导入链接,从Alexa的流量排名– 获取网站的导入链接,由谷歌索引的网页数量– 获取网站的信任,从WOT排名。– 获取,因为它是第一个注册的网站域名年龄– 获取的Tw……继续阅读 » 4年前 (2021-03-22) 2820浏览 1711个赞
在限定的区域里自动调整字体大小的php类 imagefittext.class.php<?php // Image Fit Text Class 0.1 by ming0070913 CLASS ImageFitText{ public $font, $fontsize, $width, $height; public $……继续阅读 » 4年前 (2021-03-22) 2401浏览 1858个赞
php专用数组排序的类 ArraySortUtil** * ArraySortUtil is a array sort utility, you can extends the sorting engine. * * @version 0.1 * @author coderkk Cudnik <coderkk@gmail.com&……继续阅读 » 4年前 (2021-03-22) 2361浏览 1978个赞
php封装的mongodb操作类<?php /* * To change this template, choose Tools | Templates * and open the template in the editor. */ class mongo_db { private $c……继续阅读 » 4年前 (2021-03-22) 2520浏览 2360个赞
php文本url转换为链接function text2links($str='') { if($str=='' or !preg_match('/(http|www\.|@)/i', $str)) { return $str; } $lines = explode(&q……继续阅读 » 4年前 (2021-03-22) 1274浏览 1093个赞
php获取来源地址function referrer_link() {$refer = $_SERVER['HTTP_REFERER']; if ($refer) { echo '<a href="' . $refer . '">Go back</a>……继续阅读 » 4年前 (2021-03-22) 2494浏览 1199个赞
php备份你的mysql数据库的代码片段<?phpbackup_tables('localhost','misslily','misslily','blog','*'); /* backup the db OR just a table ……继续阅读 » 4年前 (2021-03-22) 2216浏览 443个赞
一个php表单验证的演示代码,如果验证失败会在当前页显示提示信息<?php // Quick function to loop through regexs and compare to what is in _POST// // $regs -> associative array of regular exp……继续阅读 » 4年前 (2021-03-22) 2591浏览 158个赞
把字符串中的url替换成可点击的链接,默认给链接添加nofollow,即不允许搜索引擎搜索function replace_urls($string, $rel = 'nofollow'){ $host = "([a-z\d][-a-z\d]*[a-z\d]\.)+[a-z][-a-z\d]*[a-z]"……继续阅读 » 4年前 (2021-03-22) 1268浏览 1474个赞
php查询数据库后,输出查询结果,隔行变色显示<?php$host="localhost"; // Host name$username=""; // Mysql username$password=""; // Mysql password$db_name="test……继续阅读 » 4年前 (2021-03-22) 2562浏览 1000个赞
php返回文件扩展名//gets a filenames extensionfunction filename_extension($filename) {//{{{ $pos = strrpos($filename, '.'); if($pos===false) { return false; }……继续阅读 » 4年前 (2021-03-22) 1776浏览 494个赞
一个完全面向对象的RSS/XML php类<?phperror_reporting(E_ALL); mysql_connect("localhost","root","root") or die (mysql_error());mysql_select_db("oop&……继续阅读 » 4年前 (2021-03-22) 2551浏览 170个赞
php生成圆角图片代码<?php$image_file = $_GET['src'];$corner_radius = isset($_GET['radius']) ? $_GET['radius'] : 20; // The default corner radius is set……继续阅读 » 4年前 (2021-03-22) 2628浏览 732个赞
一个超简单的php 许可系统代码<?php $fp = fopen("http://domain.com/lic.txt", "r");stream_set_timeout($fp, 10);$license = fread($fp, filesize($filename));fclose($fp……继续阅读 » 4年前 (2021-03-22) 2825浏览 2039个赞
php返回图片属性list($width, $height, $type, $atrib) = getimagesize($path.$image);……继续阅读 » 4年前 (2021-03-22) 2581浏览 0评论734个赞
调用方法:此代码可以为大图片动态生成缩略图显示,图片在内存中生成,不在硬盘生成真实文件<?php /*File: thumbs.phpExample: <img src="thumbs.php?filename=photo.jpg&width=100&height=100">*/ $f……继续阅读 » 4年前 (2021-03-22) 2433浏览 0评论1316个赞
C语言求1000以内的完美数完全数(Perfect number),又称完美数或完备数,是一些特殊的自然数。它所有的真因子(即除了自身以外的约数)的和(即因子函数),恰好等于它本身。#include "stdio.h"void main(){int sum,k,j;for(k=2;k<=1000;k++){sum=0……继续阅读 » 4年前 (2021-03-22) 3002浏览 2416个赞
C语言计算2个字符串的编辑距离编辑距离:通过插入、删除、替换一个字符(和交换相邻字符)的操作,使得字符串A和字符串B相同,而最少的操作次数就是编辑距离。如字符串abcd和aca的距离是2代码转自:http://blog.csdn.net/wapwo/article/details/8831810 ……继续阅读 » 4年前 (2021-03-22) 2146浏览 1113个赞
C语言进行回文检测回文:称正读和反读都相同的字符序列为“回文”,如“abba”、“abccba”、12321、123321是“回文”,“abcde”和“ababab”则不是“回文”。#include<stdio.h>#include<string.h>int main(void){ char str[100]; in……继续阅读 » 4年前 (2021-03-22) 2038浏览 439个赞
C语言判断给定的数是否是回文数回文数是指一个像16461这样“对称”的数,即:将这个数的数字按相反的顺序重新排列后,所得到的数和原来的数一样。bool isPalindrome(int num){ int pal = 0; int origin = num; while(num) { pal *= 1……继续阅读 » 4年前 (2021-03-22) 2321浏览 2382个赞
c语言猴子选大王(约瑟夫环问题)#include #include #define n 20#define m 5typedef struct monkey{ int num; struct monkey *next;} Monkey,*LINK;int main(){ LINK p,head,p2; int i; ……继续阅读 » 4年前 (2021-03-22) 1855浏览 2367个赞
题目描述: n个人围坐一圈,标号1-n,从s开始报数,第m个报的人出列,一直循环下去直到所有人出列。设计一算法,输入n,m,s,输出出列顺序。这个问题有好多种算法,我是用双向循环链表实现的转自:http://blog.csdn.net/shiyanhui66/article/details/5991752/* *use two-directi……继续阅读 » 4年前 (2021-03-22) 1705浏览 599个赞
c语言实现两种查找的示例#include <stdio.h>#include <stdlib.h>int main(){ int L[11]={0,70,38,65,97,76,93,1,15,68,64}; //无序序列 int S[11]={0,10,20,30,35,40,65,67,69,84,……继续阅读 » 4年前 (2021-03-22) 1405浏览 1642个赞
使用C语言清空特定文件夹中的所有文件#include "iostream.h" //由于该博客系统发布是不能显示正常,……继续阅读 » 4年前 (2021-03-22) 2193浏览 803个赞
C语言 打印一个用字符表示的菱形或正(倒)三角形#include<stdio.h>#include<stdlib.h>main(){ int n,i,k,j; char ch; //n是行数,ch代表所要输出的字符 printf("输入所要打印的行数n和字符ch\n"); sca……继续阅读 » 4年前 (2021-03-22) 1850浏览 1744个赞
LINUX下c语言SOCKET客户端示范#include <netinet/in.h> // for sockaddr_in#include <sys/types.h> // for socket#include <sys/socket.h> // for socket#include <……继续阅读 » 4年前 (2021-03-22) 1656浏览 1943个赞
C语言串口测试程序代码转自:http://blog.csdn.net/mao0514/#include<stdio.h>unsigned int UART0_ADDR = 0x20080000;unsigned int retu=0;int i=0;void delay_x(unsigned short cycles){ ……继续阅读 » 4年前 (2021-03-22) 3207浏览 2568个赞
时间限制:1000 ms | 内存限制:65535 KB输入两个整数a,b (0……继续阅读 » 4年前 (2021-03-22) 1502浏览 2108个赞
Time Limit: 1000/500 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)In this problem, your task is to calculate SUM(n) = 1 + 2 + 3 + … + n.即:求1+2+3+…+n的和……继续阅读 » 4年前 (2021-03-22) 1235浏览 266个赞
题目描述: 输入一个正整数N,输出N的阶乘。输入:正整数N(0……继续阅读 » 4年前 (2021-03-22) 3106浏览 545个赞
Problem DescriptionI have a very simple problem for you. Given two integers A and B, your job is to calculate the Sum of A + B.InputThe first line of the input contains an integ……继续阅读 » 4年前 (2021-03-22) 3101浏览 1255个赞
ACM 1003 :Max sum 求相邻数最大和Problem DescriptionGiven a sequence a[1],a[2],a[3]……a[n], your job is&nb……继续阅读 » 4年前 (2021-03-22) 2721浏览 2113个赞
欧拉函数E(n)表示小于n的所有正数,与n互质的数的个数1 当p为素数时,显然E(p)= p-12 当n=p^k (p为素数)时,E(p^k)=p^k-p^(k-1) 证明:小于n的数一共有p^k-1个,其中不与p互质的有p*1,p*2,p*3,…p*(p^(k-1)-1)(显然有p^(k-1)-1个),则E(n)=(……继续阅读 » 4年前 (2021-03-22) 3115浏览 2383个赞
如果一个函数中所有递归形式的调用都出现在函数的末尾,我们称这个递归函数是尾递归的。当递归调用是整个函数体中最后执行的语句且它的返回值不属于表达式的一部分时,这个递归调用就是尾递归。尾递归函数的特点是在回归过程中不用做任何操作,这个特性很重要,因为大多数现代的编译器会利用这种特点自动生成优化的代码。当编译器检测到一个函数调用是尾递归的时候,它就覆盖当前的活跃……继续阅读 » 4年前 (2021-03-22) 1763浏览 1270个赞
如果一个函数中所有递归形式的调用都出现在函数的末尾,我们称这个递归函数是尾递归的。当递归调用是整个函数体中最后执行的语句且它的返回值不属于表达式的一部分时,这个递归调用就是尾递归。尾递归函数的特点是在回归过程中不用做任何操作,这个特性很重要,因为大多数现代的编译器会利用这种特点自动生成优化的代码。下面的代码通过尾递归的方式实现了快速排序void qu……继续阅读 » 4年前 (2021-03-22) 2753浏览 2893个赞
文件多路递归C语言实现代码#include <assert.h> #include <time.h> #include <stdio.h> #include <memory.h> #include <stdlib.h> void swap_int(int* a,i……继续阅读 » 4年前 (2021-03-22) 2464浏览 1467个赞
C语言获取本机的第一个本地ip地址#include <arpa/inet.h>#include <string.h>#include <unistd.h>#include <netdb.h> /** * Local IP address * * @param buf - buffer to……继续阅读 » 4年前 (2021-03-22) 1715浏览 687个赞
C语言生成随机uuid编码#include <stdio.h>#include <stdlib.h> /** * Create random UUID * * @param buf - buffer to be filled with the uuid string */char *random_uuid( ch……继续阅读 » 4年前 (2021-03-22) 2429浏览 527个赞
C语言单链表排序// P167_example1.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include <iostream>#include <stdio.h>#include……继续阅读 » 4年前 (2021-03-22) 2507浏览 118个赞
C语言自己实现linux下cp文件复制命令#include <stdio.h>#include <stdlib.h>#include <string.h>#include <errno.h>#include <unistd.h>#include <fcntl.h>#in……继续阅读 » 4年前 (2021-03-22) 2855浏览 801个赞