将选中的复选框值保存为数组

时间:2017-06-23 14:32:22

标签: php arrays wordpress checkbox

我想知道是否有人可以帮助我。我试图将wordpress元数据中仅已检查复选框的值保存为数组作为数组。到目前为止,我已经能够将每个列保存为单独的列,但我想将它们编译为只有一个数组,当复选框没有取消时,我想要update_post_meta删除只是未被点击的人。由于某种原因,它一直被覆盖。

我使用的代码会不断保存它们:

function save_location_meta($post_id) {
    global $location_meta_fields;
    // verify nonce
    if (!isset($_POST['location_meta_box_nonce']) || !wp_verify_nonce($_POST['location_meta_box_nonce'], basename(__FILE__)))
        return $post_id;
    // check autosave
    if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
        return $post_id;
    // check permissions
    if ('page' == $_POST['post_type']) {
        if (!current_user_can('edit_page', $post_id))
            return $post_id;
    } elseif (!current_user_can('edit_post', $post_id)) {
        return $post_id;
    }
    // loop through fields and save the data
    foreach ($location_meta_fields as $field) {
        $old = get_post_meta($post_id, $field['id'], true);
        $new = $_POST[$field['id']];
        if($new == '' && !$old && array_key_exists('default',$field)){
            $new = $field['default'];
        }
        if ($new != '' && $new != $old) {
            update_post_meta($post_id, $field['id'], $new);

        } elseif ($new == '' && $old != '') {

          $post_users = get_weekly_stats( $post_id, $field['id'], $old );

          $uid_key = array_search( $field['id'], $post_users);

          unset( $post_users[$uid_key] );

          update_post_meta( $post_id, "_test_one", $uid_key );

            update_post_meta( $post_id, "test", $post_users );



            delete_post_meta($post_id, $field['id'], $old);

        }
    } // end foreach




}
add_action('save_post', 'save_location_meta');

显示复选框的元框回调:

function one_callback( $post ) {

    global $location_meta_fields, $post;
    // Use nonce for verification
    echo '<input type="hidden" name="location_meta_box_nonce" value="'.wp_create_nonce(basename(__FILE__)).'" />';
    // Begin the field table and loop
    echo '<table class="form-table">';
    foreach ($location_meta_fields as $field) {
        // get value of this field if it exists for this post
        $meta = get_post_meta($post->ID, $field['id'], true);
        // begin a table row with
        echo '<tr>
                <td>';
                echo '<input type="checkbox" name="'.$field['id'].'" id="'.$field['id'].'" ',$meta ? ' checked="checked"' : '','/>
                    <label for="'.$field['id'].'">'.$field['label'].'</label>';

        echo '</td></tr>';
    } // end foreach
    echo '</table>'; // end table
}

我的问题:如何将检查的值保存在一个数组中,而不是每个检查值保存一个?

1 个答案:

答案 0 :(得分:0)

您需要使用&#34; []&#34;来编写输入的名称,然后PHP会将保存的值视为数组。

    ans = math.degrees(math.acos((((b*b)+(c*c)-(a*a))/(2*a*b))))
    ValueError: math domain error

因此,如果您希望例如访问已检查的第一个值,则可以像function one_callback( $post ) { global $location_meta_fields, $post; // Use nonce for verification echo '<input type="hidden" name="location_meta_box_nonce" value="'.wp_create_nonce(basename(__FILE__)).'" />'; // Begin the field table and loop echo '<table class="form-table">'; foreach ($location_meta_fields as $field) { // get value of this field if it exists for this post $meta = get_post_meta($post->ID, $field['id'], true); ?> <tr> <td> <input type="checkbox" name="fields[]" value="<?php echo $field['id']; ?>" id="<?php echo $field['id']; ?>" <?php checked($meta); ?>/> <label for="<?php echo $field['id']; ?>"><?php echo $field['label']; ?></label>'; </td> </tr> <?php } // end foreach echo '</table>'; // end table } 一样执行此操作。

然后在您的函数$_POST['fields'][0]中,您不需要遍历字段,您可以将它们作为数组保存到数据库中,如下所示: save_location_meta()