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

Send a TRACE request


Description Description


Source Source

File: wp-includes/class-requests.php

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


Top ↑

User Contributed Notes User Contributed Notes

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