php去除html标签代码 代码段

<? function Text2Html($txt){ $txt = str_replace(" "," ",$txt); $txt = str_replace("<","&lt;",$txt); $txt = str_replace(">","&gt;",$txt); $txt = preg_replace("/[rn]{1,}/isU"," rn",$txt); return $txt; }

n7w77 2015-03-19   971   0
PHP  

PHP把全角数字转为半角数字 代码段

//把全角数字转为半角数字 <? function GetAlabNum($fnum){ $nums = array("0","1","2","3","4","5","6","7","8","9"); //OSPHP.com.CN $fnums = "0123456789"; for($i=0;$i<=9;$i++) $fnum = str_replace($nums[$i],$fnums[$i]

gdde 2015-03-21   728   0
PHP  

PHP常用处理操作类 代码段

php /** * 常用静态类,这里主要整理了一些PHP常常会用到的方法。 */ class C { /* * 私有处理随机数的内置参数 * array 随机数数组/param 随机数长度 * 返回一个随机数

ngww 2015-04-23   3902   0
PHP  

PHP利用imagick把PDF转成PNG 代码段

function pdf2png($PDF,$Path){ if(!extension_loaded('imagick')){ return false; } if(!file_exists($PDF)){ return false; } $IM = new imagick(); $IM->setResolution(120,120); $IM->setCompressionQuality(100

nepe 2015-04-29   929   0
PHP  

php实现二分查找算法 代码段

// $low and $high have to be integers function BinarySearch( $array, $key, $low, $high ) { if( $low > $high ) // termination case { return -1; } $middle = intval( ( $low+$high )/2 ); // gets the middl

y3c5 2015-05-11   895   0
PHP  

PHP关键词高亮 代码段

对指定的关键词进行替换处理,在html页面上高亮显示 function highlight($sString, $aWords) { if (!is_array ($aWords) || empty ($aWords) || !is_string ($sString)) { return false; } $sWords = implode ('|', $aWords); return preg_

jopen 2015-07-27   981   0
PHP  

PHP计算两个日期的差 代码段

php $date1 = date( 'Y-m-d' ); $date2 = "2015-12-04"; $diff = abs(strtotime($date2) - strtotime($date1));

mf6w 2015-08-09   819   0
PHP  

PHP限制文件下载的速度 代码段

php // local file that should be send to the client $local_file = 'test-file.zip'; // filename that

mf6w 2015-08-09   934   0
PHP  

PHP生成二维码 代码段

curl_exec($ch); curl_close($ch); return $response; } 用法: php header("Content-type: image/png"); echo qr_code("http://koonk

mf6w 2015-08-09   974   0
PHP  

PHP数字运算验证码 代码段

php getValidate(100,30); function getValidate($w,$h){ $img = imagecreate($w,$h); $gray = imagecolorallocate($img

jopen 2015-08-09   746   0
PHP  

PHP双向队列,双端队列代码 代码段

php /** * User: jifei * Date: 2013-07-30 * Time: 23:12 */ /** * PHP实现双向队列,双端队列 * 双端队列(deque,全名double-ended

jopen 2015-11-24   1100   0
PHP  

php array_diff使用实例i 代码段

php $array1 = array('OH','CA','NY','HI','CT'); $array2 = array('OH','CA','HI','NY','IA'); $array3 =

Roy91E 2016-01-21   644   0
PHP  

PHP passthru()函数使用 代码段

php passthru('ls', $return_val); echo 'Exit code of $return_val\n'; ?>

Roy91E 2016-01-21   1267   0
PHP  

php简体繁体转换 代码段

php class utf8_chinese { private $utf8_gb2312; private $utf8_big5; public function __construct(){ $this->utf8_gb2312

码头工人 2016-01-22   2794   0
PHP  

PHP的C扩展Yaf的实例 代码段

采用鸟哥的PHP的C扩展Yaf的实例案例演示 开放源代码 见下方 [PHP]代码 /** * 获得上传组件 * * @access public * @return void */ public function

suxiang. 2016-01-23   832   0

php 使用PHPEXcel导出表数据 代码段

项目中需要将表中的数据导出,在网上找了找发现phpexcel蛮好用的.特此分享 PHPEXCEL php if(!defined('BASEPATH')) exit('No direct script access

ouhp9343 2016-01-24   6868   0
PHP  

PHP图像处理开发库 资讯

PHP并不限于创建HTML输出,它也可以被用来操作和创建各种不同的图片文件格式,包括GIF,PNG, JPEG, WBMP,和XPM。PHP可以将图像流直接输出至浏览器。 在这篇文章中,我们已经收

jopen 2014-02-24   26463   0
PHP  

PHP大师的10个开发原则 资讯

Web 开发世界里,PHP 是最流行的语言之一,从 PHP 里,你能够很容易的找到你所需的脚本,遗憾的是,很少人会去用“最佳做法”去写一个 PHP 程序。这里,我们向大家介绍 PHP 的 10 种最佳实

jopen 2013-04-08   22551   0
PHP  

最好的PHP开发框架 资讯

Secure and Pro PHP Framework Yii is one of the most popular and top Framework amongst all PHP Frameworks

jopen 2013-05-13   15401   0
PHP  

PHP 5.6.10/5.5.26 发布 资讯

PHP 5.6.10 发布,此版本修复了一些 bug,还有一些重要安全修复 (CVE-2015-3414, CVE-2015-3415, CVE-2015-3416, CVE-2015-2325 and

jopen 2015-06-12   4429   0
PHP  
1 2 3 4 5 6 7 8 9 10