$value ){ // We first copy each key/value pair into a staging array, // formatting each key and value properly as we go. // Format the key: if( is_numeric( $key ) ){ $key = "key_$key"; } $key = '"'.addslashes( $key ).'"'; // Format the value: if( is_array( $value )){ $value = yourls_array_to_json( $value ); } else if( !is_numeric( $value ) || is_string( $value ) ){ $value = '"'.addslashes( $value ).'"'; } // Add to staging array: $construct[] = "$key: $value"; } // Then we collapse the staging array into the JSON form: $result = "{ " . implode( ", ", $construct ) . " }"; } else { // If the array is a vector (not associative): $construct = array(); foreach( $array as $value ){ // Format the value: if( is_array( $value )){ $value = yourls_array_to_json( $value ); } else if( !is_numeric( $value ) || is_string( $value ) ){ $value = '"'.addslashes($value).'"'; } // Add to staging array: $construct[] = $value; } // Then we collapse the staging array into the JSON form: $result = "[ " . implode( ", ", $construct ) . " ]"; } return $result; } /** * BC Math functions (assuming if one doesn't exist, none does) * */ if ( !function_exists( 'bcdiv' ) ) { function bcdiv( $dividend, $divisor ) { $quotient = floor( $dividend/$divisor ); return $quotient; } function bcmod( $dividend, $modulo ) { $remainder = $dividend%$modulo; return $remainder; } function bcmul( $left, $right ) { return $left * $right; } function bcadd( $left, $right ) { return $left + $right; } function bcpow( $base, $power ) { return pow( $base, $power ); } } /** * http_build_url compatibility function * * @since 1.7.1 */ if ( !function_exists( 'http_build_url' ) ) { include YOURLS_INC . '/http_build_url/http_build_url.php'; } /** * mb_substr compatibility function. Stolen from WP * * Only understands UTF-8 and 8bit. All other character sets will be treated as 8bit. * For $encoding === UTF-8, the $str input is expected to be a valid UTF-8 byte sequence. * The behavior of this function for invalid inputs is undefined. * * @since 1.7.1 */ if ( ! function_exists( 'mb_substr' ) ) : function mb_substr( $str, $start, $length = null, $encoding = null ) { return yourls_mb_substr( $str, $start, $length, $encoding ); } endif; function yourls_mb_substr( $str, $start, $length = null, $encoding = null ) { if ( null === $encoding ) { $encoding = 'UTF-8'; } // The solution below works only for UTF-8, // so in case of a different charset just use built-in substr() if ( ! in_array( $encoding, array( 'utf8', 'utf-8', 'UTF8', 'UTF-8' ) ) ) { return is_null( $length ) ? substr( $str, $start ) : substr( $str, $start, $length ); } if ( yourls_supports_pcre_u() ) { // Use the regex unicode support to separate the UTF-8 characters into an array preg_match_all( '/./us', $str, $match ); $chars = is_null( $length ) ? array_slice( $match[0], $start ) : array_slice( $match[0], $start, $length ); return implode( '', $chars ); } $regex = '/( [\x00-\x7F] # single-byte sequences 0xxxxxxx | [\xC2-\xDF][\x80-\xBF] # double-byte sequences 110xxxxx 10xxxxxx | \xE0[\xA0-\xBF][\x80-\xBF] # triple-byte sequences 1110xxxx 10xxxxxx * 2 | [\xE1-\xEC][\x80-\xBF]{2} | \xED[\x80-\x9F][\x80-\xBF] | [\xEE-\xEF][\x80-\xBF]{2} | \xF0[\x90-\xBF][\x80-\xBF]{2} # four-byte sequences 11110xxx 10xxxxxx * 3 | [\xF1-\xF3][\x80-\xBF]{3} | \xF4[\x80-\x8F][\x80-\xBF]{2} )/x'; $chars = array( '' ); // Start with 1 element instead of 0 since the first thing we do is pop do { // We had some string left over from the last round, but we counted it in that last round. array_pop( $chars ); // Split by UTF-8 character, limit to 1000 characters (last array element will contain the rest of the string) $pieces = preg_split( $regex, $str, 1000, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY ); $chars = array_merge( $chars, $pieces ); } while ( count( $pieces ) > 1 && $str = array_pop( $pieces ) ); // If there's anything left over, repeat the loop. return join( '', array_slice( $chars, $start, $length ) ); } /** * mb_strlen compatibility function. Stolen from WP * * Only understands UTF-8 and 8bit. All other character sets will be treated as 8bit. * For $encoding === UTF-8, the $str input is expected to be a valid UTF-8 byte sequence. * The behavior of this function for invalid inputs is undefined. * * @since 1.7.1 */ if ( ! function_exists( 'mb_strlen' ) ) : function mb_strlen( $str, $encoding = null ) { return yourls_mb_strlen( $str, $encoding ); } endif; function yourls_mb_strlen( $str, $encoding = null ) { if ( null === $encoding ) { $encoding = 'UTF-8'; } // The solution below works only for UTF-8, // so in case of a different charset just use built-in strlen() if ( ! in_array( $encoding, array( 'utf8', 'utf-8', 'UTF8', 'UTF-8' ) ) ) { return strlen( $str ); } if ( yourls_supports_pcre_u() ) { // Use the regex unicode support to separate the UTF-8 characters into an array preg_match_all( '/./us', $str, $match ); return count( $match[0] ); } $regex = '/(?: [\x00-\x7F] # single-byte sequences 0xxxxxxx | [\xC2-\xDF][\x80-\xBF] # double-byte sequences 110xxxxx 10xxxxxx | \xE0[\xA0-\xBF][\x80-\xBF] # triple-byte sequences 1110xxxx 10xxxxxx * 2 | [\xE1-\xEC][\x80-\xBF]{2} | \xED[\x80-\x9F][\x80-\xBF] | [\xEE-\xEF][\x80-\xBF]{2} | \xF0[\x90-\xBF][\x80-\xBF]{2} # four-byte sequences 11110xxx 10xxxxxx * 3 | [\xF1-\xF3][\x80-\xBF]{3} | \xF4[\x80-\x8F][\x80-\xBF]{2} )/x'; $count = 1; // Start at 1 instead of 0 since the first thing we do is decrement do { // We had some string left over from the last round, but we counted it in that last round. $count--; // Split by UTF-8 character, limit to 1000 characters (last array element will contain the rest of the string) $pieces = preg_split( $regex, $str, 1000 ); // Increment $count += count( $pieces ); } while ( $str = array_pop( $pieces ) ); // If there's anything left over, repeat the loop. // Fencepost: preg_split() always returns one extra item in the array return --$count; } /** * hash_equals compatibility function. Stolen from Code Igniter * * Source: https://github.com/bcit-ci/CodeIgniter/blob/3.1.4/system/core/compat/hash.php * For PHP < 5.6 * * @since 1.7.2 */ if ( ! function_exists('hash_equals')) { /** * hash_equals() * * @link http://php.net/hash_equals * @param string $known_string * @param string $user_string * @return bool */ function hash_equals($known_string, $user_string) { if ( ! is_string($known_string)) { trigger_error('hash_equals(): Expected known_string to be a string, '.strtolower(gettype($known_string)).' given', E_USER_WARNING); return FALSE; } elseif ( ! is_string($user_string)) { trigger_error('hash_equals(): Expected user_string to be a string, '.strtolower(gettype($user_string)).' given', E_USER_WARNING); return FALSE; } elseif (($length = strlen($known_string)) !== strlen($user_string)) { return FALSE; } $diff = 0; for ($i = 0; $i < $length; $i++) { $diff |= ord($known_string[$i]) ^ ord($user_string[$i]); } return ($diff === 0); } }