Function __global->get_webpage_meta_details

Definitions

sources/http.php

  • Extract meta details from a URL.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Returns: array

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$url URLPATH No No required parameter N/A N/A Webpage URL

Returns

  • A map of meta details extracted from the webpage
  • Type: array
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Extract meta details from a URL.
 *
 * @param  URLPATH $url Webpage URL
 * @return array A map of meta details extracted from the webpage
 */

function get_webpage_meta_details(string $url) : array