[PHP]WordPress HTTP API

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/‘ ) );


[PHP]WordPress HTTP API

上一篇:Windows Embedded Compact 7 打包和部署程序(下)


下一篇:【玩转cocos2d-x之三十四】绘图:CCDrawingPrimitives和CCDrawNode