コード例 #1
0
 public static function myCreateInputHidden($id, $name, $value = '', $addtext = '', $delim = ',')
 {
     if (is_array($value)) {
         $val = RRUtils::implode_with_key($value);
     } else {
         $val = $value;
     }
     $val = str_replace('"', '"', $val);
     $text = '<input type="hidden" name="' . $id . $name . '" value="' . $val . '"';
     if ($addtext != '') {
         $text .= ' ' . $addtext;
     }
     $text .= " />\n";
     return $text;
 }