您现在的位置:主页 > 技术中心 > WEB编程 > PHP

10个不常见却非常有用的PHP函数(2)

来源:未知 责任编辑:责任编辑 发表时间:2014-01-06 18:18 点击:

 

 

$items = array(

“100 apples”, “5 apples”, “110 apples”, “55 apples”

);

// normal sorting:

sort($items);

print_r($items);

# Outputs:

# Array

# (

# [0] => 100 apples

# [1] => 110 apples

# [2] => 5 apples

# [3] => 55 apples

# )

natsort($items);

print_r($items);

# Outputs:

# Array

# (

# [2] => 5 apples

# [3] => 55 apples

# [0] => 100 apples

# [1] => 110 apples

# )

 

 

9. levenshtein()函数

 

Levenshtein()告诉你两个单词之间的“距离”。它告诉你如果想把一个单词变成另一个单词,需要插入、替换和删除多少字母。

 

看个例子吧:

 

 

 

 

$dictionary = array(

“php”, “javascript”, “css”

);

$word = “japhp”;

$best_match = $dictionary[0];

$match_value = levenshtein($dictionary[0], $word);

foreach($dictionary as $w) {

$value = levenshtein($word, $w);

if( $value < $match_value ) {

$best_match = $w;

$match_value = $value;

}

}

echo “Did you mean the ‘$best_match’ category?”;

 

 

10. glob()函数

 

glob()会让你觉得用opendir(), readdir()和closedir()来寻找文件非常蠢。

 

 

 

 

foreach (glob(“*.php”) as $file)

echo “$file\n”;

 

摘自 lsoftwolf blog

发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
评价:
表情:
用户名: 验证码:点击我更换图片

推荐热点

  • PHP测试
  • 十天学会php之第六天
  • 几种显示数据的方法的比较
  • 使用xmlhttp为网站增加域名查询功能
  • PHP+MYSQL+Javascript数据库查询结果的动态显示
  • 查找数组中指定键名的值
  • 用redis实现跨服务器session
  • 用新浪微博接口发送图片微博失败的原因
  • smarty局部缓存技术[源码分析]
?? - ?? - ÝřŝžľŘÝź - TAGąęÇŠ - RSSśŠÔÄ - ??
Copyright © 2004-2024 上海卓卓网络科技有限公司