Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4053424
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T14:26:44+00:00 2026-05-20T14:26:44+00:00

I’ve been working on a little project, and I find myself in a position

  • 0

I’ve been working on a little project, and I find myself in a position where I need a php function which can linkify URLs in my data, while enabling me to set some exceptions on links I don’t want to linkify. Any idea of how to do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T14:26:44+00:00Added an answer on May 20, 2026 at 2:26 pm

    I have an open source project on GitHub: LinkifyURL which you may want to consider. It has a function: linkify() which plucks URLs from text and converts them to links. Note that this is not a trivial task to do correctly! (See: The Problem With URLs – ands be sure to read the thread of comments to grasp all the things that can go wrong.)

    If you really need to NOT linkify specific domains (i.e. vimeo and youtube), here is a modified PHP function linkify_filtered (in the form of a working test script) that does what you need:

    <?php // test.php 20110313_1200
    
    function linkify_filtered($text) {
        $url_pattern = '/# Rev:20100913_0900 github.com\/jmrware\/LinkifyURL
        # Match http & ftp URL that is not already linkified.
          # Alternative 1: URL delimited by (parentheses).
          (\()                     # $1  "(" start delimiter.
          ((?:ht|f)tps?:\/\/[a-z0-9\-._~!$&\'()*+,;=:\/?#[\]@%]+)  # $2: URL.
          (\))                     # $3: ")" end delimiter.
        | # Alternative 2: URL delimited by [square brackets].
          (\[)                     # $4: "[" start delimiter.
          ((?:ht|f)tps?:\/\/[a-z0-9\-._~!$&\'()*+,;=:\/?#[\]@%]+)  # $5: URL.
          (\])                     # $6: "]" end delimiter.
        | # Alternative 3: URL delimited by {curly braces}.
          (\{)                     # $7: "{" start delimiter.
          ((?:ht|f)tps?:\/\/[a-z0-9\-._~!$&\'()*+,;=:\/?#[\]@%]+)  # $8: URL.
          (\})                     # $9: "}" end delimiter.
        | # Alternative 4: URL delimited by <angle brackets>.
          (<|&(?:lt|\#60|\#x3c);)  # $10: "<" start delimiter (or HTML entity).
          ((?:ht|f)tps?:\/\/[a-z0-9\-._~!$&\'()*+,;=:\/?#[\]@%]+)  # $11: URL.
          (>|&(?:gt|\#62|\#x3e);)  # $12: ">" end delimiter (or HTML entity).
        | # Alternative 5: URL not delimited by (), [], {} or <>.
          (                        # $13: Prefix proving URL not already linked.
            (?: ^                  # Can be a beginning of line or string, or
            | [^=\s\'"\]]          # a non-"=", non-quote, non-"]", followed by
            ) \s*[\'"]?            # optional whitespace and optional quote;
          | [^=\s]\s+              # or... a non-equals sign followed by whitespace.
          )                        # End $13. Non-prelinkified-proof prefix.
          ( \b                     # $14: Other non-delimited URL.
            (?:ht|f)tps?:\/\/      # Required literal http, https, ftp or ftps prefix.
            [a-z0-9\-._~!$\'()*+,;=:\/?#[\]@%]+ # All URI chars except "&" (normal*).
            (?:                    # Either on a "&" or at the end of URI.
              (?!                  # Allow a "&" char only if not start of an...
                &(?:gt|\#0*62|\#x0*3e);                  # HTML ">" entity, or
              | &(?:amp|apos|quot|\#0*3[49]|\#x0*2[27]); # a [&\'"] entity if
                [.!&\',:?;]?        # followed by optional punctuation then
                (?:[^a-z0-9\-._~!$&\'()*+,;=:\/?#[\]@%]|$)  # a non-URI char or EOS.
              ) &                  # If neg-assertion true, match "&" (special).
              [a-z0-9\-._~!$\'()*+,;=:\/?#[\]@%]* # More non-& URI chars (normal*).
            )*                     # Unroll-the-loop (special normal*)*.
            [a-z0-9\-_~$()*+=\/#[\]@%]  # Last char can\'t be [.!&\',;:?]
          )                        # End $14. Other non-delimited URL.
        /imx';
    //    $url_replace = '$1$4$7$10$13<a href="$2$5$8$11$14">$2$5$8$11$14</a>$3$6$9$12';
    //    return preg_replace($url_pattern, $url_replace, $text);
        $url_replace = '_linkify_filter_callback';
        return preg_replace_callback($url_pattern, $url_replace, $text);
    }
    function _linkify_filter_callback($m)
    { // Filter out youtube and vimeo domains.
        $pre  = $m[1].$m[4].$m[7].$m[10].$m[13];
        $url  = $m[2].$m[5].$m[8].$m[11].$m[14];
        $post = $m[3].$m[6].$m[9].$m[12];
        if (preg_match('/\b(?:youtube|vimeo)\.com\b/', $url)) {
            return $pre . $url . $post;
        } // else linkify...
        return $pre .'<a href="'. $url .'">' . $url .'</a>' .$post;
    }
    
    // Create some test data.
    $data = 'Plain URLs (not delimited):
    foo http://example.com bar...
    foo http://example.com:80 bar...
    foo http://example.com:80/path/ bar...
    foo http://example.com:80/path/file.txt bar...
    foo http://example.com:80/path/file.txt?query=val&var2=val2 bar...
    foo http://example.com:80/path/file.txt?query=val&var2=val2#fragment bar...
    foo http://example.com/(file\'s_name.txt) bar... (with \' and (parentheses))
    foo http://[2001:0db8:85a3:08d3:1319:8a2e:0370:7348] bar... ([IPv6 literal])
    foo http://[2001:0db8:85a3:08d3:1319:8a2e:0370:7348]/file.txt bar... ([IPv6] with path)
    foo http://youtube.com bar...
    foo http://youtube.com:80 bar...
    foo http://youtube.com:80/path/ bar...
    foo http://youtube.com:80/path/file.txt bar...
    foo http://youtube.com:80/path/file.txt?query=val&var2=val2 bar...
    foo http://youtube.com:80/path/file.txt?query=val&var2=val2#fragment bar...
    foo http://youtube.com/(file\'s_name.txt) bar... (with \' and (parentheses))
    foo http://vimeo.com bar...
    foo http://vimeo.com:80 bar...
    foo http://vimeo.com:80/path/ bar...
    foo http://vimeo.com:80/path/file.txt bar...
    foo http://vimeo.com:80/path/file.txt?query=val&var2=val2 bar...
    foo http://vimeo.com:80/path/file.txt?query=val&var2=val2#fragment bar...
    foo http://vimeo.com/(file\'s_name.txt) bar... (with \' and (parentheses))
    ';
    // Verify it works...
    echo(linkify_filtered($data) ."\n");
    
    ?>
    

    This employs a callback function to do the filtering. Yes, the regex is complex (but so it the problem as it turns out!). You can see the interactive Javascript version of linkify() in action here: URL Linkification (HTTP/FTP).

    Also, John Gruber has a pretty good regex to do linkification. See: An Improved Liberal, Accurate Regex Pattern for Matching URLs. However, his regex suffers catastrophic backtracking under certain circumstances. (I’ve written to him about this, but he has yet to respond.)

    Hope this helps! 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have a jquery bug and I've been looking for hours now, I can't
I need a function that will clean a strings' special characters. I do NOT
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
I would like to count the length of a string with PHP. The string
I am trying to understand how to use SyndicationItem to display feed which is
I used javascript for loading a picture on my website depending on which small
this is what i have right now Drawing an RSS feed into the php,
I would like to run a str_replace or preg_replace which looks for certain words

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.