Skip to content

Instantly share code, notes, and snippets.

@al5dy
Created December 26, 2016 09:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save al5dy/42ef3e1aeac139fa971531d0d55afeea to your computer and use it in GitHub Desktop.
Save al5dy/42ef3e1aeac139fa971531d0d55afeea to your computer and use it in GitHub Desktop.
Универсальное добавление класса "table" в <table>
if ( false !== strpos( $content, '<table' ) ) {
$rep = preg_replace('~<table\K(?:[^>]*?\K(\s?)class="([^"]*)")?~', ' class="$2$1table"', $rep);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment