1

我需要做一个任务,它将数组值与输入的文本值进行比较。

对于数组,代码如下:

<div class="wpsc-quantity-discounts">
        <table>
            <thead>
                <tr>
                    <th class="qty" colspan="2">Quantity:</th>
                    <th class="curr"><span class="hidden">Currency:<span></th>
                    <th class="price">Price:</th>
                </tr>
            </thead>
            <tbody>
                                                <tr>
                                <td class="remove"><a href="#" class="remove_line dashicons dashicons-dismiss"></a></td>
                                <td class="qty">
                                    <input type="text" size="5" value="500"/*this value*/ name="table_rate_price[quantity][]" />
                                    +                                   </td>
                                <td class="curr">USD $</td>
                                <td><input class="newCurrPrice text" value="0.48" name="table_rate_price[table_price][]" /></td>

它已经包含了我需要的变量。我需要将第一列与我的单个产品页面中输入的文本进行比较。

                            <?php if(wpsc_has_multi_adding()): ?>
                            <fieldset><legend style="float:left;"><?php _e('Quantity', 'wpsc'); ?>: &nbsp;</legend>
                            <div class="wpsc_quantity_update">
                            <input type="text" id="wpsc_quantity_update_<?php echo wpsc_the_product_id(); ?>" name="wpsc_quantity_update" size="2" value="500"/*This value*/ />
                            <input type="hidden" name="key" value="<?php echo wpsc_the_cart_item_key(); ?>"/>
                            <input type="hidden" name="wpsc_update_quantity" value="true" />
                            </div><!--close wpsc_quantity_update-->
                            </fieldset>

我需要做一个 if 语句,如果输入的文本小于第一列的数组,它将返回 false。如果有人有一个很棒的建议。我仍然是 php 的菜鸟,所以很容易:p。谢谢。

这是我现在拥有的代码。

<fieldset><legend style="float:left;"><?php _e('Quantity', 'wpsc'); ?>: &nbsp;</legend>
							<div class="wpsc_quantity_update">
							<input type="text" id="wpsc_quantity_update_<?php echo wpsc_the_product_id(); ?>" name="wpsc_quantity_update" size="2" value="500" />
							<input type="hidden" name="key" value="<?php echo wpsc_the_cart_item_key(); ?>"/>
							
                            </div><!--close wpsc_quantity_update-->
                            
                            <php? if ( table_rate_price[1][0] > wpsc_quantity_update(value)): />
 							<return <input type="hidden" name="wpsc_update_quantity" value="false" />
					<?php else: ?>\
						return <input type="hidden" name="wpsc_update_quantity" value="true" />; 
                            </fieldset>

4

2 回答 2

0

看起来table_rate_price[1][]应该是table_rate_price[1][0]?如果不查看该数组的外观就无法判断,请执行print_r($table_rate_price)并向我们展示结果。

在比较之前,我会将值转换为 int 或 float,因为所有发布数据都是 String。我假设 wpsc_quantity_update() 返回 $_POST['wpsc_quantity_update'] 值。

floatval() * 小数,如 0.48, 3.14, ...

intval * 整数 1, 2, 3 ...

if ( table_rate_price[1][0] < floatval(wpsc_quantity_update())) {
  return false;
}
return true; 
于 2015-01-31T01:02:27.030 回答
0

检查文档,in_array我相信这就是您要寻找的。

这是一个让您入门的片段:

<?php
$os = array("Mac", "NT", "Irix", "Linux");
if (in_array("Irix", $os)) {
    echo "Got Irix";
}
if (in_array("mac", $os)) {
    echo "Got mac";
}
?>
于 2015-01-31T00:34:22.490 回答