快速业务通道

常用字符串处理代码片段

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-05-23
sp;    } 
  •         } 
  •     } 
  •     return $message; 
  •   删除字符串中的URL

    1. $string = preg_replace(''/\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|$!:,.;]*[A-Z0-9+&@#\/%=~_|$]/i'', '''', $string); 

      将字符串转成SEO友好的字符串

    1. function slug($str){ 
    2.     $str = strtolower(trim($str)); 
    3.     $str = preg_replace(''/[^a-z0-9-]/'', ''-'', $str); 
    4.     $str = preg_replace(''/-+/'', "-", $str); 
    5.     return $str; 

      解析 CSV 文件

    1. $fh = fopen("contacts.csv", "r"); 
    2. while($line = fgetcsv($fh, 1000, ",")) { 
    3.     echo "Contact: {$line[1]}"; 
      字符串搜索
    1. function contains($str, $content, $ignorecase=true){ 
    2.     if ($ignorecase){ 
    3.         $str = strtolower($str); 
    4.         $content = strtolower($content); 
    5.     } 
    6.     return strpos($content,$str) ? true : false; 
      检查字符串是否以某个串开始
    1. function String_Begins_With($needle, $haystack { 
    2.     return (substr($haystack, 0, strlen($needle))==$needle); 
      从字符串中提取email地址
    1. function extract_emails($str){ 
    2.     // This regular expression extracts all emails from a string: 
    3.     $regexp = ''/([a-z0-9_\.\-])+\@(([a-z0-9\-])+\.)+([a-z0-9]{2,4})+/i''; 
    4.     preg_match_all($regexp, $str, $m); 
    5.  
    6.     return isset($m[0]) ? $m[0] : array(); 
    7.  
    8. $test_string = ''This is a test string... 
    9.  
    10.         test1@example.org 
    11.  
    12.         Test different formats: 
    13.         test2@example.org; 
    14.         <a href="test3@example.org">foobar</a> 
    15.         <test4@example.org> 
    16.  
    17.         strange formats: 
    18.         test5@example.org 
    19.         test6[at]example.org 
    20.         test7@example.net.org.c

    凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

    分享到: 更多

    Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

    地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

    电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

    《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号