Rumah >php教程 >PHP源码 >curl调用如java开发的restful接口

curl调用如java开发的restful接口

PHP中文网
PHP中文网asal
2016-05-25 17:10:561494semak imbas

php代码

<?php
/*
 * 调用例子
 */

define( &#39;SYSPATH&#39;, &#39;./base/http/&#39; );
define( &#39;APIPATH&#39;, &#39;./com/api/&#39; );

require_once SYSPATH.&#39;client.php&#39;;
require_once SYSPATH.&#39;response.php&#39;;
require_once SYSPATH.&#39;client/curl.php&#39;;

require_once APIPATH.&#39;connector.php&#39;;
require_once APIPATH.&#39;response.php&#39;;
require_once APIPATH.&#39;app/query.php&#39;;

$result = Com_Api_App_Query::get( array( &#39;test&#39; => &#39;Hello world&#39; ) );

if ( FALSE === $result )
{
    echo Com_Api_Response::getError();exit;
}

var_dump( $result );

echo &#39;<br><br>&#39;;

$result = Com_Api_App_Query::get( array( &#39;test&#39; => &#39;Hello world&#39; ) );

if ( FALSE === $result )
{
    echo Com_Api_Response::getError();exit;
}

var_dump( $result );
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:免费人脸识别api