VPS.NET PHP APIを使用したいのですが、特定のクラスの使用方法がわかりません。たとえば、VPSNETクラスにあるgetDomains関数を呼び出したいと思います。クラス: http: //pastebin.com/wn4UYQB7 助けてくれてありがとう。
質問する
106 次
1 に答える
1
テストされていませんが、次のようなものです。
<?php
//Include the class into the script
include('VPSNET.class.php');
//Start the class & get instance, pass your username, api key ect
$vpsAPI = VPSNET::getInstance($username, $_auth_api_key);
//Call the getDomains method from the class
$result = $vpsAPI->getDomains();
//Do somthing with the result
print_r($result);
?>
于 2012-08-30T07:42:35.427 に答える