?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,CURLOPT_POSTFIELDS,$param);
$strRes = curl_exec($ch);
curl_close( $ch );
$arrResponse = json_decode( $strRes,true );
// if( $arrResponse['status']==0 ) {
// echo iconv('UTF-8','GBK',$arrResponse['err_msg'])."\n";
// } else {
// return $arrResponse;
// }
return $arrResponse;
}
// --------------------------------------------------------------------
/**
* 使用DWZ生產(chǎn)短網(wǎng)址服務
*
* @see http://dwz.cn/
* @param string $url
* @return array|bool
*/
public static function createTinyUrl( $url='' ){
if( $url ){
$targetURL = 'https://dwz.cn/admin/v2/create';
$param = array(
'url' => $url,);
$result = self::httpPost( $targetURL,$param );
if( $result['status'] == 0 ){
return $result;
} else {
return false;
}
}
}
// --------------------------------------------------------------------
}
以上是腳本之家為你收集整理的PHP利用DWZ.CN服務生成短網(wǎng)址全部內(nèi)容,希望文章能夠幫你解決使用DWZ.CN生成短網(wǎng)址所遇到的程序開發(fā)問題。