Skip to content

Instantly share code, notes, and snippets.

@jakebellacera
Last active June 3, 2016 01:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jakebellacera/7e10134ddde84833f623 to your computer and use it in GitHub Desktop.
Save jakebellacera/7e10134ddde84833f623 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