>  기사  >  php教程  >  DWZ.CN을 사용하여 단축 URL 생성

DWZ.CN을 사용하여 단축 URL 생성

大家讲道理
大家讲道理원래의
2016-11-08 11:50:144930검색

<?php
/**
 * FunctionHelper
 */
class FunctionHelper {
    // --------------------------------------------------------------------
    /**
     * httpPost
     *
     * @param  string $url
     * @param  array $param
     * @return array|bool
     */
    public static function httpPost( $url, array $param ){
        if( empty($url) || empty($param) ){
            return false;
        }
        $ch = curl_init();
        curl_setopt( $ch, CURLOPT_URL, $url);
        curl_setopt( $ch, CURLOPT_POST, true);
        curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt( $ch, CURLOPT_POSTFIELDS, $param);
        $strRes = curl_exec($ch);
        curl_close( $ch );
        $arrResponse = json_decode( $strRes, true );
        // if( $arrResponse[&#39;status&#39;]==0 ) {
        //  echo iconv(&#39;UTF-8&#39;,&#39;GBK&#39;, $arrResponse[&#39;err_msg&#39;])."\n";
        // } else {
        //  return $arrResponse;
        // }
        return $arrResponse;
    }
    // --------------------------------------------------------------------
    /**
     * 使用DWZ生产短网址服务
     *
     * @see    http://dwz.cn/
     * @param  string $url
     * @return array|bool
     */
    public static function createTinyUrl( $url=&#39;&#39; ){
        if( $url ){
            $targetURL = &#39;http://dwz.cn/create.php&#39;;
            $param = array(
                &#39;url&#39; => $url,
            );
            $result = self::httpPost( $targetURL, $param );
            if( $result[&#39;status&#39;] == 0 ){
                return $result;
            } else {
                return false;
            }
        }
    }
    // --------------------------------------------------------------------
}
 
// 测试
$strLongUrl = "http://my.oschina.net/wangyongtao";
$arrTinyUrlResult = FunctionHelper::createTinyUrl( $strLongUrl );
print_r($arrTinyUrlResult);
// $ php dwz_test.php 
// Array
// (
//     [tinyurl] => http://dwz.cn/30R23W
//     [status] => 0
//     [longurl] => http://my.oschina.net/wangyongtao
//     [err_msg] => 
// )

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.