이 글의 예시에서는 PHP에서 Kingsoft PowerWord의 일상 문장을 무작위로 얻는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 구현 방법은 다음과 같습니다.
header('Content-Type:text/html; charset=utf-8'); $nowyear=date("Y"); $nowmouth = date('m'); $nowday = date('d'); $date = mt_rand("2012",$nowyear)."-".mt_rand("1",$nowmouth)."-".mt_rand("1",$nowday); $content=file_get_contents('http://open.iciba.com/dsapi/?date='.$date); $arr=json_decode($content,true); print_r($arr);
이 기사가 모든 사람의 PHP 프로그래밍 설계에 도움이 되기를 바랍니다.