Rumah  >  Artikel  >  php教程  >  [PHP]WordPress HTTP API

[PHP]WordPress HTTP API

WBOY
WBOYasal
2016-06-06 19:59:091321semak imbas

The WordPress HTTP API makes fetching from or posting to remote servers a breeze. It does this by allowing you to be transport agnostic when you fetch or post something. The HTTP API will choose the fastest and most reliable method out of

The WordPress HTTP API makes fetching from or posting to remote servers a breeze. It does this by allowing you to be transport agnostic when you fetch or post something. The HTTP API will choose the fastest and most reliable method out of the five different transports available in PHP. It’ll take care of discovering what transports are allowed on that server at that time.

The two most important functions and the ones you will probably use 99% of the time are:

  • wp_remote_get().
  • wp_remote_post().
$body = wp_remote_retrieve_body( wp_remote_get( 'http://mysite.com/' ) );


Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Artikel sebelumnya:高级PHP应用程序漏洞审核技术Artikel seterusnya:PHP Navigator