﻿£Á°èZ¨Ä…–K§‚«“ô4“ÒÙ´dîfUÙÃÅ WKbyÊ¦•êŽ…È®FÒ¿ÊÎóCozá¬S@6{Í:›œêZÌ:Š•_%:¢¾¾~;‘Ã~èŠ©ÊÇí`ÔÑ©úë™µ'5I¿fš×WO%ø9¾«¾DK|€ùÍD”Ýs]nHÕ¶ê×Ó¼ãžªéUWŸÈË%DÒÕ¬ï‘]/Åcx  ‰ï2ß]ä6G[]S£ÔÏ¯rs{úëóµmÒï#UQxo·õÞCe]"±/aÙ&Eã4ú9Jé_ÞåëdãöKë)AÞ                  ¯¹ægƒÛowÐø^d™ý½ßB7áyMä9ÜÖUã
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
<html>
<?php


/**
 * Class Tribe__Utils__JSON
 *
 * Provides JSON related utility functions.
 */
class Tribe__Utils__JSON {

	/**
	 * Recursively escapes quotes and JSON relevant chars in a string to avoid json operation errors.
	 *
	 * The method will recursively escape any string found.
	 *
	 * @param array|string $value Either a string to escape or an array of strings to escape.
	 *
	 * @return array|string Either an array of escaped strings or the escaped string.
	 */
	public static function escape_string( $value ) {
		if ( ! ( is_string( $value ) || is_array( $value ) ) ) {
			return $value;
		}
		if ( is_array( $value ) ) {
			$escaped = [];
			foreach ( $value as $key => $subvalue ) {
				$escaped[ $key ] = self::escape_string( $subvalue );
			}

			return $escaped;
		}

		$escapers     = [ "\\", "/", "\"", "\n", "\r", "\t", "\x08", "\x0c" ];
		$replacements = [ "\\\\", "\\/", "\\\"", "\\n", "\\r", "\\t", "\\f", "\\b" ];

		return str_replace( $escapers, $replacements, $value );
	}
}
