php检测字符串中是否包含外部链接/** * is_external_link 检测字符串是否包含外链 * @param string $text 文字 * @param string $host 域名 * @return boolean false 有外链 true 无外链 * http://blog.qita.inf……继续阅读 » 4年前 (2021-03-10) 1440浏览 0评论1306个赞
php自定义函数检测是否是utf8编码其实php有一个内置函数可以用:mb_detect_encodingfunction is_utf8($string){ return preg_match('%^(?: [\x09\x0A\x0D\x20-\x7E] # ASCII | [\……继续阅读 » 4年前 (2021-03-10) 3028浏览 0评论1642个赞
php简单的多字节字符串翻转<?phpfunction mb_strev ($string, $encoding = null) { if ($encoding === null) { $encoding = mb_detect_encoding($string); } $length = mb_strlen($stri……继续阅读 » 4年前 (2021-03-10) 1462浏览 0评论315个赞
简单的php日志写入函数function log( $logthis ){file_put_contents('logfile.log', date("Y-m-d H:i:s"). " " . $logthis. "\r\n", FILE_APPEND | LOCK_EX……继续阅读 » 4年前 (2021-03-10) 1591浏览 0评论1775个赞
php 获取客户端的ip、地理信息、浏览器信息、本地真实ip<?php // 作用取得客户端的ip、地理信息、浏览器http://blog.qita.in class get_gust_info { ////获得访客浏览器类型 function GetBrowser(){ if(!empty($_SERVER[……继续阅读 » 4年前 (2021-03-10) 3071浏览 0评论2687个赞
有些摄影师喜欢把图片的标题,内容,关键词等用photoshop直接写入图片文件里面。 用以下代码可以读取。$image_info = array();$size = getimagesize('图片文件.jpg', $info);if(isset($info['APP13'])){ $iptc = ……继续阅读 » 4年前 (2021-03-10) 2170浏览 0评论1929个赞
比如秒数时间很长,可以通过这段代码转换成几年几月几日的形式$time = time() - $time; $points = array( 'year' => 31556926, 'month' => 2629743,……继续阅读 » 4年前 (2021-03-10) 1537浏览 0评论370个赞
php自带的rmdir,只能删除空目录,这个rrmdir就可以递归删除目录及目录下的所有文件,不过使用起来要小心哦,不要把所有文件都删了。function rrmdir($dir) { if (is_dir($dir)) { $objects = scandir($dir); foreach ($objects as $obj……继续阅读 » 4年前 (2021-03-10) 1211浏览 0评论1491个赞
php gzinflate和base64_decode加密解密<?php function encode_file_contents($filename) { $type=strtolower(substr(strrchr($filename,’.'),1)); if(’php’==$type && is_file……继续阅读 » 4年前 (2021-03-10) 2733浏览 0评论477个赞
php中文繁体和简体相互转换函数下面的代码用到了繁体和简体字库对照表<?phpclass utf8_chinese{ private $utf8_gb2312; private $utf8_big5; private $data; public function __const……继续阅读 » 4年前 (2021-03-10) 1476浏览 0评论1679个赞
通过python post提交数据的代码演示转自:http://blog.csdn.net/mypc2010# -*- coding: cp936 -*-import urllib2import urllibdef postHttp(name=None,tel=None,address=None, price=Non……继续阅读 » 4年前 (2021-03-10) 2928浏览 0评论2999个赞
Android下PreferenceActivity使用示例 MainActivity如下:package cn.testpreferenceactivity;import android.content.SharedPreferences;import android.os……继续阅读 » 4年前 (2021-03-10) 1457浏览 0评论2046个赞
php简单代码实现无限分类树形列表转自:http://blog.csdn.net/shangxiaoxue/article/details/8463193$items = array( 1 => array('id' => 1, 'pid' => 0, 'name'……继续阅读 » 4年前 (2021-03-10) 1492浏览 0评论538个赞
简单的php ubb转换代码[b]test[/b][url=http://blah.com]blah[/url] will become:<strong>test</strong><a href="http://b……继续阅读 » 4年前 (2021-03-10) 3032浏览 0评论593个赞
php按字符截取中文并保证无乱码的方法<?php//$str 待截取的字符串//$len 截取的字符个数//$chars 已经截取的字符数//$res 保存的字符串//$chars 保存已经截取的字符串个数//$offset 截取的偏移量//$length 字符串的字节数//若$len>$str的字符个数,造成无谓的wh……继续阅读 » 4年前 (2021-03-10) 3163浏览 0评论1123个赞
这段代码的时间复杂度为O(n)来源:http://blog.csdn.net/zinss26914/article/details/8032361<?php function JudegSortArray($array) { if ($array [0] > $array [1]) { $flag = 1……继续阅读 » 4年前 (2021-03-10) 2698浏览 0评论1507个赞
php 找出数组中的重复数据转自:http://blog.csdn.net/zinss26914/article/details/8030618 (1)利用php提供的函数,array_unique和array_diff_assoc来实现<?php function Fe……继续阅读 » 4年前 (2021-03-10) 1793浏览 0评论884个赞
PHP限制IP访问 只允许指定IP访问 允许*号通配符过滤IP转自:http://blog.csdn.net/yw5201314/article/details/8467525/** * 检测访问的ip是否为规定的允许的ip * Enter description here ... */function check_ip(){ $ALLOWE……继续阅读 » 4年前 (2021-03-10) 2865浏览 0评论2304个赞
一个php编写的斐波那契数列代码片段 斐波那契数列(Fibonacci Sequence),又称黄金分割数列,指的是这样一个数列:1、1、2、3、5、8、13、21、……在数学上,斐波纳契数列以如下被以递归的方法定义:F0=0,F1=1,Fn=F(n-1)+F(n-2)(n>=2,n∈N*)。我用递归和迭代两种方法实现了斐波那契数列/** * De……继续阅读 » 4年前 (2021-03-10) 1654浏览 0评论448个赞
php实现字符串翻转的代码<?phpheader("content-type:text/html;charset=utf-8"); /**此函数的作用是反转中文字符串mb_strlen() 获取字符的长度mb_substr() 获取字符的单个元素krsort() 按照键值逆序排序数组implode() 将数组拼接……继续阅读 » 4年前 (2021-03-10) 2288浏览 0评论1558个赞
PHP中几个输出函数echo(),print(),print_r()的区别 echo ,print的区别在于echo 可以输出多个变量值,而print只有一个变量,做为一个字符串输出. 另一点区别在于echo 没有……继续阅读 » 4年前 (2021-03-10) 3039浏览 0评论764个赞
php 判断客户端是否为手机移动设备判断客户端是否为手机移动设备 function is_mobile() { $user_agent = $_SERVER['HTTP_USER_AGENT']; $mobile_agents = Array("240x320","acer&……继续阅读 » 4年前 (2021-03-10) 1600浏览 0评论1605个赞
解决php json_encode 函数中文乱码的问题解决以下问题json_encode 中文后的字符串不可阅读json_encode 多级数组中文乱码问题json_encode 数组中包含换行时错误问题json_encode 数组中键为中文的问题转自:http://blog.1dnet.net/?post=840function _encode($……继续阅读 » 4年前 (2021-03-10) 1956浏览 0评论2107个赞
php使用指定的编码导出mysql数据到csv的代码<?php ……继续阅读 » 4年前 (2021-03-10) 1710浏览 0评论2946个赞
php上传图片客户端和服务器端代码演示 表单代码<form name="form1" method="post" action="admin_upfile.php" enctype="multipart/f……继续阅读 » 4年前 (2021-03-10) 2660浏览 0评论838个赞
php强制下载文件的代码header("Content-type: application/octet-stream");// displays progress bar when downloading (credits to Felix ;-))header("Content-Length: " . fi……继续阅读 » 4年前 (2021-03-10) 1769浏览 0评论2784个赞
php取得字符串的首字母(适用于中文字符串)转自:http://blog.1dnet.net/?post=838<?php$limit = array( //gb2312 拼音排序 array(45217,45252), //A array(45253,45760), //B array(45761,46317), //……继续阅读 » 4年前 (2021-03-10) 1297浏览 0评论905个赞
php去除html代码中的空白和空行的代码function DeleteHtml($str){ $str = trim($str); $str = ereg_replace("\t","",$str); ……继续阅读 » 4年前 (2021-03-10) 2494浏览 0评论565个赞
PHP判断IP并转跳到相应城市分站的代码演示转自:http://blog.1dnet.net/?post=807<?php class QQWry{ var $StartIP=0; var $EndIP=0; var $Country=''; var $L……继续阅读 » 4年前 (2021-03-10) 1806浏览 0评论1474个赞
php读取文件函数//读取文件函数 <? function readfromfile($file_name) { if (file_exists($file_name)) { $filenum=fopen($file_name,"r"); flock($filenum,LOCK_EX); $file_data=fr……继续阅读 » 4年前 (2021-03-10) 1456浏览 0评论563个赞
php写文件函数演示代码,可以将制定的数据写入文件//写入文件函数 <? function writetofile($file_name,$data,$method="w") { $filenum=fopen($file_name,$method); flock($filenum,LOCK_EX); $file_da……继续阅读 » 4年前 (2021-03-10) 2922浏览 0评论824个赞
这个python函数模仿windows下的xcopy命令编写,可以用在linux下#!/usr/bin/python# -*- coding: UTF-8 -*-"""xcopy for Linux...Use:___________________________________________________……继续阅读 » 4年前 (2021-03-10) 2684浏览 0评论2117个赞
php自定义函数获取访问者的操作系统类型<? function osinfo() { $os=""; $Agent = $GLOBALS["HTTP_USER_AGENT"]; if (eregi('win',$Agent) && strpos($Agent, &……继续阅读 » 4年前 (2021-03-10) 1324浏览 0评论2744个赞
一个非常简单的格式转换代码,可以把.PDF文件转换为.JPG文件,代码要起作用,服务器必须要安装Image Magick 扩展。$pdf_file = './pdf/demo.pdf';$save_to = './jpg/demo.jpg'; //make sure that apache h……继续阅读 » 4年前 (2021-03-10) 2205浏览 0评论414个赞
php解压zip文件function unzip_file($file, $destination){ // create object $zip = new ZipArchive() ; // open archive if ($zip->open($file) !== TRUE) { die ('Could not op……继续阅读 » 4年前 (2021-03-10) 3004浏览 0评论2212个赞
php从数据库查询email是否已经存在// Use this$email_is_valid = valid_email($email, $db); // Functionfunction valid_email ($email, $db) { $r_email = $db->prepare('SELECT ……继续阅读 » 4年前 (2021-03-10) 2989浏览 0评论480个赞
php输出全球各个时区列表<?php$timezones = array ( '(GMT-12:00) International Date Line West' => 'Pacific/Wake', '(GMT-11:00) Midway Island' => ……继续阅读 » 4年前 (2021-03-10) 2997浏览 0评论1939个赞
python搜索指定目录的文件,并进行文件内搜索指定的关键词#!/usr/bin/python -O# -*- coding: UTF-8 -*-"""Sucht rekursiv in Dateiinhalten und listet die Fundstellen auf."""……继续阅读 » 4年前 (2021-03-10) 2767浏览 0评论406个赞
python编写的benchmark 代码,用于小系统的性能测试很好#!/usr/bin/env python# coding: utf-8"""small system Benchmark by jensdiemer.deused fak_test by Dookie alias Fritz Cizmarovh……继续阅读 » 4年前 (2021-03-10) 2221浏览 0评论1884个赞
一个python编写的用于搜索文件并进行内容替换的类#!/usr/bin/python -O# coding: UTF-8"""-replace string in files (recursive)-display the difference.v0.2 - search_string can be a re……继续阅读 » 4年前 (2021-03-10) 1813浏览 0评论2295个赞
一个用于计算函数执行时间的php类c_Timer代码<? class c_Timer { var $t_start = 0; var $t_stop = 0; var $t_elapsed = 0; functi……继续阅读 » 4年前 (2021-03-10) 1346浏览 0评论2072个赞
php检查Email地址是否有效<?php function is_valid_email($email) { if(preg_match("/[a-zA-Z0-9_-.+]+@[a-zA-Z0-9-]+.[a-zA-Z]+/", $email) > 0) retu……继续阅读 » 4年前 (2021-03-10) 2644浏览 0评论2584个赞
只有在限定范围内的ip地址才能访问function get_real_ipaddress() { if (!empty($_SERVER['HTTP_CLIENT_IP'])) { return $_SERVER['HTTP_CLIENT_IP']; } elseif (!empty($_SERV……继续阅读 » 4年前 (2021-03-10) 2797浏览 0评论414个赞
用php数组填充下拉列表框<?php $data = array( (object)array("titulo"=>"Ford", "valor"=>"opcion1"), ……继续阅读 » 4年前 (2021-03-10) 3018浏览 0评论182个赞
Mark’s IRC API Library 一个php编写的IRC API库Formats data for sending to an IRC network. This library does not handle * actual connecting to the IRC server or parsing the IRC serve……继续阅读 » 4年前 (2021-03-10) 2433浏览 0评论935个赞