Skip to content

Instantly share code, notes, and snippets.

@lnked
Forked from jakebellacera/force_new_tab.php
Created June 3, 2016 01:24
Show Gist options
  • Save lnked/f5df8450270cd12e3d59a0bcd8bf25ce to your computer and use it in GitHub Desktop.
Save lnked/f5df8450270cd12e3d59a0bcd8bf25ce to your computer and use it in GitHub Desktop.
Force PDF links to open in a new tab in PHP.
$new_text = preg_replace(
'/((<a (?=.*\.pdf)(?!.*target="_blank").*?)>)/',
'$2 target="_blank">',
$old_text
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment