コード例 #1
0
ファイル: InputBuilder.php プロジェクト: mcprohosting/ccbill
 public function build(Client $client, Form $form)
 {
     $output = '';
     foreach ($form->serialize() as $key => $value) {
         $output .= '<input type="hidden" name="' . $key . '" value="' . $value . '">';
     }
     return $output;
 }
コード例 #2
0
ファイル: UrlBuilder.php プロジェクト: mcprohosting/ccbill
 public function build(Client $client, Form $form)
 {
     return $client->buildUrl($form->getPath()) . '?' . http_build_query($form->serialize());
 }