SimplePie_Misc::parse_str

Advertisement

Summery Summery

Similar to parse_str()

Syntax Syntax

SimplePie_Misc::parse_str( string $str )

Description Description

Returns an associative array of name/value pairs, where the value is an array of values that have used the same name

Parameters Parameters

$str

(Required) The input string.

Return Return

(array)

Source Source

File: wp-includes/SimplePie/Misc.php

		{
			return chr(0xf0 | ($codepoint >> 18)) . chr(0x80 | (($codepoint >> 12) & 0x3f)) . chr(0x80 | (($codepoint >> 6) & 0x3f)) . chr(0x80 | ($codepoint & 0x3f));
		}

		// U+FFFD REPLACEMENT CHARACTER
		return "\xEF\xBF\xBD";
	}

	/**
	 * Similar to parse_str()
	 *
	 * Returns an associative array of name/value pairs, where the value is an
	 * array of values that have used the same name
	 *
	 * @static
	 * @param string $str The input string.
	 * @return array
	 */
	public static function parse_str($str)
	{

Advertisement

Advertisement

Leave a Reply