-1

製品 (およびユーザーがショッピング カートに追加する各製品の数量) のデータベースをクエリするショッピング カートの php ファイルを作成しています。しかし、「カンマ区切りの文字列」の扱いがわかりません。これまでのコードのループは次のとおりです。

//Loop through your cart array (foreach productID's quantity in cart):
     $_SESSION['numItems'] = $cart;//Update the number of items in your cart

     //Build a comma-delimited string in $prodIDStr containing the product
     //ID’s of the products currently in our cart array:
     $prodIDStr = "";//STACKOVERFLOW QUESTION


     if($_SESSION[numItems] = 0){//If cart it empty:
         print "<h3>Your shopping cart is empty!</h3>\n";
     }
     Else{//if cart is not empty:

         //remove trailing comma from $prodIDstr:

コンマ区切りの文字列とは正確には何ですか? また、末尾のコンマを削除するとどうなりますか?

4

2 に答える 2

0

1) この質問は、Google 検索で最もよく回答されます: https://www.google.com/search?q=what+is+a+comma+delimineted+string&sourceid=ie7&rls=com.microsoft:en-us:IE- SearchBox&ie=&oe=#rls=com.microsoft:en-us:IE-SearchBox&q=what+is+a+comma+delimited+string&spell=1&sa=X&ei=S6yGUdmUMMS60QHvmoHwBg&ved=0CC0QvwUoAA&bav=on.2,or.r_qf.&bvm=bv .45960087,d.dmQ&fp=2bfada69378a0dbe&biw=1680&bih=938

名前と電話番号など、値が異なる場合は、名前と電話番号のようにコンマで区切ります。

2) この質問は、CSV とは何かを知っていれば直感的に理解できます。最後の文字がカンマの場合、末尾のカンマを削除するとカンマが削除されます。

名前、電話番号、最後の , を削除

于 2013-05-05T19:02:44.657 に答える
0

コンマ区切りの文字列とは正確には何ですか? また、末尾のコンマを削除するとどうなりますか?

コンマ区切り文字列は、文字列の一部をコンマで区切った文字列です。 お気に入り

$a = 'you, should, do, your, homework, before, asking, stuff, like, this, here';

コンマを削除すると、パーツが少なくなります。

$a = 'you, should, do your homework, before, asking, stuff, like this here';
于 2013-05-05T19:30:57.800 に答える