Foreach循环循环两次

时间:2016-09-27 03:34:51

标签: php foreach

所以我的问题是它循环两次,这不是我想要的所需输出。所以我开始有一个3复选框,每个值1到3,它被发送到数据库并被一个&除以#39; @ | @'登录。

$ rs_array [' package']的内容示例,已选中3个复选框

if(strpos($rs_array['package'], '@|@') == true){
$array = explode('@|@', $rs_array['package']);
foreach ($array as $myArray) {
    if ($myArray==1) {
        $myArray = "Starter";
    }
    elseif ($myArray==2) {
        $myArray = "Developing";
    }
    elseif ($myArray==3){
        $myArray = "Matured";
    }
    $my_Array[] =  $myArray;
}
//unset($my_Array);
$my_Arrays = implode(',', $my_Array);
}
else{

    $my_Arrays = $rs_array['package'];
    if($my_Arrays==1){
    $my_Arrays = "Starter";
    }
    elseif ($my_Arrays==2) {
        $my_Arrays = "Developing";
    }
    elseif ($my_Arrays==3) {
        $my_Arrays = "Matured";
    }
    else{
        $my_Arrays = "";
    }
}
echo $my_Arrays;

这里是它的foreach循环

Starter,Developing,Matured,Starter,Developing,Starter,Developing,Matured

当我选择其中三个

时,这里是回声的输出
Starter,Developing,Matured,Starter,Developing

这是我选择其中两个

的时候
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

        <LinearLayout
            android:id="@+id/input_layout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <LinearLayout
                android:id="@+id/top"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical"
                android:paddingBottom="@dimen/activity_vertical_margin"
                android:paddingLeft="@dimen/activity_horizontal_margin"
                android:paddingRight="@dimen/activity_horizontal_margin"
                android:paddingTop="@dimen/activity_vertical_margin"
                app:layout_behavior="@string/appbar_scrolling_view_behavior"
                tools:context=".ui.main.MainFragment">

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/distance"
                    android:textStyle="bold"/>

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="horizontal">
                    <EditText
                        android:layout_width="60dp"
                        android:layout_height="40dp"
                        android:inputType="number" />
                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="40dp"
                        android:id="@+id/meas_unit"
                        tools:text="ft"/>
                    <SeekBar
                        android:id="@+id/distance_seekbar"
                        android:layout_width="0dp"
                        android:layout_height="40dp"
                        android:max="95"
                        android:progress="25"
                        android:background="@null"
                        android:layout_weight="1"/>
                </LinearLayout>

            </LinearLayout>

            <View
                android:layout_width="match_parent"
                android:layout_height="1dp"
                android:background="@android:drawable/divider_horizontal_bright" />

            <LinearLayout
                android:id="@+id/bottom"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1"
                android:orientation="vertical"
                android:paddingBottom="@dimen/activity_vertical_margin"
                android:paddingLeft="@dimen/activity_horizontal_margin"
                android:paddingRight="@dimen/activity_horizontal_margin"
                android:paddingTop="@dimen/activity_vertical_margin"
                app:layout_behavior="@string/appbar_scrolling_view_behavior"
                android:elevation="6dp"
                tools:context=".ui.main.MainFragment">

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/putters"
                    android:textStyle="bold"/>

            </LinearLayout>


        </LinearLayout>

        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"
            android:layout_alignParentTop="false"
            android:layout_alignParentEnd="false"
            android:layout_alignParentBottom="true"
            android:gravity="center"
            android:layout_alignWithParentIfMissing="false"
            android:layout_alignParentRight="false"
            android:elevation="6dp">

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="New Button"
                android:id="@+id/button3"
                android:layout_gravity="center_vertical" />

            <Button
                android:layout_width="127dp"
                android:layout_height="wrap_content"
                android:text="New Button"
                android:id="@+id/button4" />

        </LinearLayout>

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="16dp"
        android:clickable="true"
        android:src="@drawable/ic_person_add_24dp"
        app:layout_anchor="@id/top"
        app:layout_anchorGravity="bottom|right|end"
        android:tint="@android:color/white"/>

</android.support.design.widget.CoordinatorLayout>

我仍然是这个foreach领域的新手,所以请注意,我仍然无法找到解决方法,甚至为什么会这样显示。很多帮助表示赞赏

------- -----问题

现在我看到的问题是,如果我只有一行$ rs_array [&#39; package&#39;]它工作正常,但问题是如果有两个或更多。 它只是加在第二个等等...... 我需要一种方法,以便它识别每一行是不同的

1 个答案:

答案 0 :(得分:-2)

您可以直接在阵列上推送它们:

def remove_empty_elements(self,xml_input):
    tree = etree.fromstring(xml_input)
    for found in tree.xpath("//*[text()=' ']"):
        print("deleted " + str(found))
        found.getparent().remove(found)
    print(etree.tostring(tree).decode("utf-8"))

希望它有所帮助。