ホームページ  >  記事  >  php教程  >  curl调用如java开发的restful接口

curl调用如java开发的restful接口

PHP中文网
PHP中文网オリジナル
2016-05-25 17:10:561472ブラウズ

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 );
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
前の記事:php简单的数组递归次の記事:免费人脸识别api