Requests::trace( $url,  $headers = array(),  $options = array() )

Send a TRACE request

Source

public static function trace($url, $headers = [], $options = []) {
	return self::request($url, $headers, null, self::TRACE, $options);
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.