- 浏览: 128942 次
- 性别:
- 来自: 杭州
文章分类
最新评论
-
zzzhenyu:
您好,我现在也遇到了同样的问题,请问你后来知道为什么了吗?
error at ::0 can't find referenced pointcut allMethod
下面介绍的是,在PHP 开发中,经常用到的21个函数代码段,当我们用到的时候,就可以直接用了。
1. PHP可阅读随机字符串
此代码将创建一个可阅读的字符串,使其更接近词典中的单词,实用且具有密码验证功能。
/**************
*@length – length of random string (must be a multiple of 2)
**************/
function readable_random_string($length= 6){
$conso=array(“b”,”c”,”d”,”f”,”g”,”h”,”j”,”k”,”l”, “m”,”n”,”p”,”r”,”s”,”t”,”v”,”w”,”x”,”y”,”z”);
$vocal=array(“a”,”e”,”i”,”o”,”u”);
$password="";
srand ((double)microtime()*1000000);
$max= $length/2;
for($i=1; $i<=$max; $i++){
$password.=$conso[rand(0,19)];
$password.=$vocal[rand(0,4)];
}
return $password ;
}
2. PHP生成一个随机字符串
如果不需要可阅读的字符串,使用此函数替代,即可创建一个随机字符串,作为用户的随机密码等。
/*************
*@l – length of random string
*/
function generate_rand( $l ){
$c = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
srand((double)microtime()*1000000);
for ( $i =0; $i < $l ; $i ++) {
$rand .= $c [rand()% strlen ( $c )];
}
return $rand ;
}
3. PHP编码电子邮件地址
使用此代码,可以将任何电子邮件地址编码为 html 字符实体,以防止被垃圾邮件程序收集。
function encode_email( $email ='info@domain.com', $linkText ='Contact Us',$attrs ='class ="emailencoder"'){
// remplazar aroba y puntos
$email = str_replace ('@','@',$email);
$email = str_replace ('.','.',$email);
$email = str_split ($email, 5);
$linkText = str_replace ('@','@',$linkText);
$linkText = str_replace ('.','.',$linkText);
$linkText = str_split ($linkText,5);
$part1 = '<a href="ma';
$part2 = 'ilto:';
$part3 = '"'.$attrs.' >';
$part4 = '</a>';
$encoded = '<script type="text/javascript">';
$encoded .="document.write('$part1');";
$encoded .="document.write('$part2');";
foreach ($email as $e) {
$encoded .= "document.write('$e');";
}
$encoded .= "document.write('$part3');";
foreach ($linkText as $l){
$encoded .= "document.write('$l');";
}
$encoded .= "document.write('$part4');";
$encoded .='</script>';
return $encoded ;
}
4. PHP验证邮件地址
电子邮件验证也许是中最常用的网页表单验证,此代码除了验证电子邮件地址,也可以选择检查邮件域所属 DNS 中的 MX 记录,使邮件验证功能更加强大。
function is_valid_email( $email , $test_mx = false) {
if ( eregi ("^([_a-z0-9-]+)(\.[_a-z0-9-]+)*@([a-z0-9-]+)(\.[a-z0-9-]+)*(\.[a-z]{2,4})$", $email )) {
if ( $test_mx ) {
list( $username , $domain ) = split("@", $email );
return getmxrr ( $domain , $mxrecords );
}
else{
return true;
}
}
else{
return false;
}
}
5. PHP列出目录内容
function list_files( $dir ) {
if ( is_dir ( $dir )){
if ( $handle = opendir( $dir )){
while (( $file = readdir( $handle )) !== false){
if ( $file != "." && $file != ".." && $file != "Thumbs.db"){
echo '<a target="_blank" href="'. $dir . $file .'">'. $file .'</a><br>'."\n";
}
}
closedir ( $handle );
}
}
}
6. PHP销毁目录
删除一个目录,包括它的内容。
/*****
*@dir – Directory to destroy
*@virtual[optional]- whether a virtual directory
*/
function destroyDir( $dir , $virtual = false){
$ds = DIRECTORY_SEPARATOR;
$dir = $virtual ? realpath ( $dir ) : $dir ;
$dir = substr ( $dir , -1) == $ds ? substr ( $dir , 0, -1) : $dir ;
if ( is_dir ( $dir ) && $handle = opendir( $dir )) {
while ( $file = readdir( $handle )){
if ( $file == '.' || $file=='..'){
continue ;
}
elseif( is_dir ( $dir . $ds . $file )){
destroyDir( $dir . $ds . $file );
}
else{
unlink( $dir . $ds . $file );
}
}
closedir ( $handle );
rmdir ( $dir );
return true;
}
else{
return false;
}
}
7. PHP解析 JSON 数据
与大多数流行的 Web 服务如 twitter 通过开放 API 来提供数据一样,它总是能够知道如何解析 API 数据的各种传送格式,包括 JSON,XML 等等。
$json_string ='{"id":1,"name":"foo","email":"foo@foobar.com","interest":["wordpress","php"]}';
$obj =json_decode( $json_string );
echo $obj ->name; //prints foo
echo $obj ->interest[1]; //prints php
8. PHP解析 XML 数据
//xml string
$xml_string ="<?xml version='1.0'?>
<users>
<user id='398'>
<name>Foo</name>
<email>foo@bar.com</name>
</user>
<user id='867'>
<name>Foobar</name>
<email>foobar@foo.com</name>
</user>
</users>";
//load the xml string using simplexml
$xml = simplexml_load_string( $xml_string );
//loop through the each node of user
foreach ( $xml ->user as $user )
{
//access attribute
echo $user [ 'id' ], ' ';
//subnodes are accessed by -> operator
echo $user ->name, ' ';
echo $user ->email, ‘<br />’;
}
9. PHP创建日志缩略名
创建用户友好的日志缩略名。
function create_slug( $string ){
$slug =preg_replace('/[^A-Za-z0-9-]+/', '-',$string );
return $slug ;
}
10. PHP获取客户端真实 IP 地址
该函数将获取用户的真实 IP 地址,即便他使用代理服务器。
function getRealIpAddr() {
if (!emptyempty($_SERVER['HTTP_CLIENT_IP'])) {
$ip=$_SERVER['HTTP_CLIENT_IP'];
}
//to check ip is pass from proxy
elseif (!emptyempty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
$ip=$_SERVER[ 'HTTP_X_FORWARDED_FOR' ];
}
else {
$ip=$_SERVER[ 'REMOTE_ADDR' ];
}
return $ip;
}
11. PHP强制性文件下载
为用户提供强制性的文件下载功能。
/********************
*@file – path to file
*/
function force_download( $file ) {
if((isset( $file ))&&( file_exists ( $file ))) {
header('Content-length:'.filesize($file));
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename=" '. $file.' " ');
readfile($file);
}else{
echo 'No file selected';
}
}
12. PHP创建标签云
function getCloud($data=array(),$minFontSize=12,$maxFontSize=30){
$minimumCount=min(array_values($data));
$maximumCount=max(array_values($data));
$spread=$maximumCount–$minimumCount;
$cloudHTML=";
$cloudTags= array ();
$spread == 0 && $spread = 1;
foreach ($data as $tag => $count ){
$size=$minFontSize+($count–$minimumCount)*($maxFontSize–$minFontSize)/$spread ;
$cloudTags[]='<a style="font-size:'.floor($size).'px'.' "href="#" title="\".$tag.'\' returned a count of '.$count.'">'. htmlspecialchars(stripslashes
($tag)).'</a>';
}
return join("\n",$cloudTags)."\n";
}
/**************************
**** Sample usage ***/
$arr=Array('Actionscrip'=> 35,'Adobe'=> 22'Array'=> 44,'Background'=> 43,'Blur'=> 18,'Canvas'=> 33,'Class'=> 15,'Color Palette'=> 11,'Crop'=> 42,'Delimiter'=> 13,'Depth'=>
34,'Design'=> 8,'Encode' => 12,'Encryption'=> 30,'Extract'=> 28,'Filters'=>42);
echo getCloud( $arr , 12, 36);
13. PHP寻找两个字符串的相似性
PHP 提供了一个极少使用的 similar_text 函数,但此函数非常有用,用于比较两个字符串并返回相似程度的百分比。
similar_text( $string1 , $string2 , $percent );
//$percent will have the percentage of similarity
14. PHP在应用程序中使用 Gravatar 通用头像
随着 WordPress 越来越普及,Gravatar 也随之流行。由于 Gravatar 提供了易于使用的 API,将其纳入应用程序也变得十分方便。
/******************
*@email – Email address to show gravatar for
*@size – size of gravatar
*@default – URL of default gravatar to use
*@rating – rating of Gravatar(G, PG, R, X)
*/
function show_gravatar( $email , $size , $default , $rating ){
echo '<img src="http: //www.gravatar.com/avatar.php?gravatar_id='.md5($email).'&default ='.$default.'&size='.$size.'&rating='.$rating.' "width="'. $size .'px"
height="'.$size.'px" />';
}
15. PHP在字符断点处截断文字
所谓断字 (word break),即一个单词可在转行时断开的地方。这一函数将在断字处截断字符串。
// Original PHP code by Chirp Internet: www.chirp.com.au
// Please acknowledge use of this code by including this header.
function myTruncate( $string , $limit , $break ='.', $pad ='…') {
// return with no change if string is shorter than $limit
if ( strlen ( $string ) <= $limit )
return $string ;
// is $break present between $limit and the end of the string?
if (false !== ($breakpoint=strpos($string,$break,$limit ))){
if ( $breakpoint < strlen ( $string ) – 1) {
$string = substr ( $string , 0, $breakpoint ) . $pad ;
}
}
return $string ;
}
/***** Example ****/
$short_string =myTruncate( $long_string , 100, ' ');
16. PHP文件 Zip 压缩
/* creates a compressed zip file */
function create_zip( $files = array (), $destination = '', $overwrite = false) {
//if the zip file already exists and overwrite is false, return false
if ( file_exists ( $destination ) && ! $overwrite ) { return false; }
//vars
$valid_files = array ();
//if files were passed in…
if ( is_array ( $files )) {
//cycle through each file
foreach ( $files as $file ) {
//make sure the file exists
if ( file_exists ( $file )) {
$valid_files [] = $file ;
}
}
}
//if we have good files…
if ( count ( $valid_files )) {
//create the archive
$zip = new ZipArchive();
if ( $zip ->open( $destination , $overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) {
return false;
}
//add the files
foreach ( $valid_files as $file ) {
$zip ->addFile( $file , $file );
}
//debug
//echo ‘The zip archive contains ‘,$zip->numFiles,’ files with a status of ‘,$zip->status;
//close the zip — done!
$zip ->close();
//check to make sure the file exists
return file_exists ( $destination );
}else{
return false;
}
}
/***** Example Usage ***/
$files = array ('file1.jpg','file2.jpg','file3.gif');
create_zip( $files ,'myzipfile.zip', true);
17. PHP解压缩 Zip 文件
/**********************
*@file – path to zip file
*@destination – destination directory for unzipped files
*/
function unzip_file( $file , $destination ){
// create object
$zip = new ZipArchive() ;
// open archive
if ( $zip ->open( $file ) !== TRUE) {
die ('Could not open archive');
}
// extract contents to destination directory
$zip ->extractTo( $destination );
// close archive
$zip ->close();
echo 'Archive extracted to directory';
}
18. PHP为 URL 地址预设 http 字符串
有时需要接受一些表单中的网址输入,但用户很少添加 http:// 字段,此代码将为网址添加该字段。
if(!preg_match("/^(http|ftp):/",$_POST['url'])) {
$_POST['url'] ='http: //'.$_POST['url'];
}
19. PHP将网址字符串转换成超级链接
该函数将 URL 和 E-mail 地址字符串转换为可点击的超级链接。
function makeClickableLinks( $text ) {
$text=eregi_replace('(((f|ht){1}tp: //)[-a-zA-Z0-9@:%_+.~#?&//=]+)','<a href="\1">\1</a>',$text);
$text=eregi_replace('([[:space:]()[{}])(www.[-a-zA-Z0-9@:%_+.~#?& //=]+)','\1<a href=”http: //\2″>\2</a>', $text);
$text=eregi_replace('([_.0-9a-z-]+@([0-9a-z][0-9a-z-]+.)+[a-z]{2,3})','<a href="mailto:\1">\1</a>',$text);
return $text ;
}
20. PHP调整图像尺寸
创建图像缩略图需要许多时间,此代码将有助于了解缩略图的逻辑。
/**********************
*@filename – path to the image
*@tmpname – temporary path to thumbnail
*@xmax – max width
*@ymax – max height
*/
function resize_image( $filename , $tmpname , $xmax , $ymax ){
$ext = explode ('.', $filename );
$ext = $ext[count($ext)-1];
if ( $ext == "jpg" || $ext == "jpeg")
$im = imagecreatefromjpeg( $tmpname );
elseif ( $ext == "png")
$im = imagecreatefrompng( $tmpname );
elseif ( $ext == "gif")
$im = imagecreatefromgif( $tmpname );
$x = imagesx( $im );
$y = imagesy( $im );
if ( $x <= $xmax && $y <= $ymax )
return $im ;
if ( $x >= $y ) {
$newx = $xmax ;
$newy = $newx * $y / $x ;
}else{
$newy = $ymax ;
$newx = $x / $y * $newy ;
}
$im2 = imagecreatetruecolor( $newx , $newy );
imagecopyresized( $im2 , $im , 0, 0, 0, 0, floor ( $newx ), floor ( $newy ), $x , $y );
return $im2 ;
}
21. PHP检测 ajax 请求
大多数的 JavaScript 框架如 jquery,Mootools 等,在发出 Ajax 请求时,都会发送额外的 HTTP_X_REQUESTED_WITH 头部信息,头当他们一个ajax请求,因此你可以在服务器端侦测到 Ajax 请求。
if (!emptyempty($_SERVER['HTTP_X_REQUESTED_WITH'])&&strtolower($_SERVER['HTTP_X_REQUESTED_WITH'])=='xmlhttprequest'){
//If AJAX Request Then
} else {
//something else
}
到这,21个经常用到的PHP函数代码段,就大家介绍完了。希望对你有帮助。
发表评论
-
看PHP如何实现多关键字加亮
2012-04-27 21:30 852实现代码: conn.php <?php ... -
SAFE MODE Restriction in effect 的问题
2012-04-27 20:36 763当safe_mode设置为 on,PHP 将通过文件函数或 ... -
DIRECTORY_SEPARATOR
2012-04-20 15:46 0DIRECTORY_SEPARATOR php的内 ... -
php连接mssql的一些方法总结
2012-04-05 08:20 855为了能让PHP连接MSSQL,系统需要安装MSSQL,PHP, ... -
提高PHP代码的性能10条建议
2012-03-27 09:58 609这篇文章中的建议涵盖了大部分PHP 代码性能方面的问题。如果 ... -
php 数组使用详解
2012-03-23 12:14 602PHP的数组函数众多,下 ... -
php全世界国家数组
2012-03-23 11:31 1547<?php //global cou ... -
10条PHP编程习惯助你找工作
2012-03-11 20:09 590来源:互联网 作者:网络转载 发布时间:2008-10-1 ... -
PHP 5的mysqli扩展
2012-02-21 17:53 1004在通常情况下,使用PHP 构建的应用系统都是搭配着M ... -
PHP中基本符号及使用方法
2012-02-18 10:20 772核心提示:用这么久了,竟然PHP的基本符号都没有认全,看到@号 ... -
Zend Studio 9.0.1破解.rar
2012-02-17 22:11 0Zend Studio 9.0.1破解 -
PHP中define和defined的区别
2012-02-17 08:20 1059PHP中define和defined的区别 对于初学者会混淆 ... -
PHP中define和defined的区别
2012-02-16 19:22 0PHP中define和defined的区别 对于初学者会混淆这 ... -
PHP中define和defined的区别
2012-02-16 19:22 0PHP中define和defined的区别 对于初学者会混淆这 ...
相关推荐
数组中的每个元素都是一个包含两个值的子数组,第一个值是汉字的拼音首字母,第二个值是一个负数,这个数字在程序中起到某种索引的作用,但具体功能需要结合整个函数的执行逻辑来理解。 函数的核心部分在于遍历输入...
以下是一些在PHP开发中经常用到的代码示例,涉及电子邮件发送、64位编码与解码、获取远程IP地址、日期格式验证、电子邮件地址验证以及XML解析等功能。 1. **PHP Mail函数发送邮件**: 使用PHP内置的`mail()`函数...
本资源集合了21个关键代码段,旨在帮助初学者快速掌握PHP的核心概念和技术。这些代码示例是经过实际学习和实践整理得出的,对于初学者来说,它们是宝贵的参考资料。 1. **变量声明**:PHP中的变量以$符号开头,如`$...
在内部展开后就会是一个函数,从这个角度来看,PHP 函数在内部也是对应一个函数指针。 运行机制:PHP 的运行机制可以分成三个阶段:Parse、Compile 和 Execute。在 PHP 内部,本身也是存在编译的过程。并且据此产生...
"PHP168网站首页幻灯代码"是一个关于如何使用PHP编程语言来实现这一功能的具体实例。下面将详细探讨PHP168网站的幻灯代码涉及的知识点: 1. **PHP基础**:PHP是一种开源的服务器端脚本语言,主要用于Web开发,可以...
6. **时间戳**:为了统计不同时间段的访问量,我们会用到PHP的`time()`函数获取当前时间戳,或者`date()`函数处理日期和时间。 7. **模板引擎与HTML输出**:计数器的数据显示通常需要与网页的其他部分结合,PHP提供...
总结来说,这些代码片段覆盖了PHP中连接数据库、执行查询、处理查询结果以及实现基本的分页功能的核心逻辑,是开发基于PHP的Web应用时经常需要用到的技术点。然而,需要注意的是,上述代码使用了已废弃的`mysql_`...
这需要用到`mktime()`函数,它可以根据指定的日期和时间创建一个时间戳。以下是如何实现生日倒计时的PHP代码: ```php <?php $birthdate = '1990-01-01'; // 生日 $currentYear = date('Y'); // 当前年份 $...
根据给定的文件信息,以下是对“10个有用的PHP代码”中涉及的知识...这些代码片段涵盖了从获取客户端信息、数据库操作、日期验证到邮件发送、JSON数据处理等多种实用功能,是PHP开发者日常工作中经常需要用到的技术点。
标题《9个经典的PHP代码片段分享》意味着接下来的内容将围绕在PHP编程中实用且常用的代码段展开,这些代码片段可以帮助开发者提升工作效率,解决编程中常见问题。根据描述,这些代码片段不仅实用,而且是频繁会被...
在PHP开发中,快速上传功能是一项常见的需求,尤其在处理大量用户...通过深入研究这个"PHP 快速上传 源代码",我们可以学习到如何创建一个高效、安全的文件上传系统,这对于提升用户体验和保证系统安全具有积极意义。
3. **递归函数**:由于UBB代码可能嵌套,例如 `[b][i]加粗斜体[/i][/b]`,我们需要一个递归函数来处理嵌套的标签。函数会检查每个匹配项,如果发现内嵌的UBB代码,就再次调用自身进行替换。 4. **安全性**:在处理...
会用到PHP的数据库连接函数如mysqli或PDO,以及session和cookie来管理用户状态。 3. **HTML/CSS/JavaScript前端**:提供用户友好的界面,通过AJAX异步通信与后端交互,实现页面的无刷新更新。 4. **安全性考虑**:...
这是一个已废弃的函数,现在推荐使用`mysqli`或者PDO。连接信息包括数据库服务器地址`$host`、用户名`$user`、密码`$pass`以及数据库名`$db`。 4. 数据库操作:使用`mysql_select_db`函数选择当前操作的数据库。...
这段代码定义了一个`mergerArray`函数,接受两个数组和两个字段作为参数。第一个数组使用第一个字段的值作为键来构建一个临时数组`$array3`。然后,遍历第二个数组,对于每个元素,检查其第一个字段的值是否存在于`$...
1. **词法分析**:这个阶段,输入的PHP代码被分解成一个个的词法单元(tokens),为语法分析做准备。 2. **语法分析**:词法单元被组合成抽象语法树(AST),这是一种表达程序结构的数据结构。 3. **优化**:AST可能...
本文将对几种不同的PHP函数代码进行小结,这些代码可以帮助开发者实现删除非空目录的功能。 首先,让我们看第一段代码: ```php function d_rmdir($dirname) { // 删除非空目录 if (!is_dir($dirname)) { ...
6. **用户界面**:尽管未提供具体界面代码,但根据描述,应用应有一个预览页面供用户输入文字并触发转换。这可能涉及到HTML、CSS和JavaScript的使用,构建一个简单的表单来接收用户输入,并触发PHP脚本执行转换任务...
本段内容详细分享了一个PHP函数,该函数通过执行Linux系统命令和对返回值的解析,以获取CPU使用率、内存使用率、磁盘使用情况、运行的进程数和当前时间等服务器状态信息。函数最终会返回一个包含各项服务器状态信息...
在IT领域,尤其是在服务器端开发中,PHP是一种广泛使用的脚本语言,而C语言...在实际开发中,可能会涉及到更多的细节,例如错误处理、内存管理、线程安全等,但上述步骤为你提供了一个基础的框架,助你开始这段旅程。