Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.56 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Function to convert Text URL into HTML URL
  2. $rawhtml = file_get_contents( "site url" );
  3.  
  4. $pat= '/((http|ftp|https)://[w#$&+,/:;=?@.-]+)[^w#$&+,/:;=?@.-]/i';
  5.  
  6. preg_match_all($pat,$rawhtml,$matches1);
  7.  
  8. foreach($matches1[1] as $plinks)
  9. {
  10.     $links_array[]=$plinks;
  11. }
  12.        
  13. $rawhtml = " http://www.filesonic.com/file/2185085531/TEST Voice 640-461 Test Cert Guide.epub
  14. "
  15.        
  16. http://www.filesonic.com/file/2185085481/TEST Voice (640)+461 Test Cert Guide.pdf
  17.        
  18. http://www.filesonic.com/file/2185085531/TEST
  19.        
  20. [^w#$&+,/:;=?@.-]
  21.        
  22. [w#$&+,/:;=?@. -]+
  23.                  ▵