Skip to content

Instantly share code, notes, and snippets.

View zethzeth's full-sized avatar

Zeth zethzeth

View GitHub Profile
@zethzeth
zethzeth / php-json-helper.php
Last active March 1, 2022 06:16
Decontaminate text in PHP, preparing for json_decode
/**
* Text cleaner
*
* Primary sources:
* - https://stackoverflow.com/questions/17219916/json-decode-returns-json-error-syntax-but-online-formatter-says-the-json-is-ok
* - https://stackoverflow.com/questions/2348152/detect-bad-json-data-in-php-json-decode
*/
function decontaminate_text(
$text,
$remove_tags = true,