Skip to content

Instantly share code, notes, and snippets.

@Chemaclass
Created September 22, 2019 12:55
Show Gist options
  • Select an option

  • Save Chemaclass/6eef3f5edd490b82fce60f8e583fd7de to your computer and use it in GitHub Desktop.

Select an option

Save Chemaclass/6eef3f5edd490b82fce60f8e583fd7de to your computer and use it in GitHub Desktop.
Docu - Strip_tags() with array of tag names
<?php
// Instead of:
strip_tags($str, '<a><p>')
// You can now write:
strip_tags($str, ['a', 'p'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment