製品 (およびユーザーがショッピング カートに追加する各製品の数量) のデータベースをクエリするショッピング カートの 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:
コンマ区切りの文字列とは正確には何ですか? また、末尾のコンマを削除するとどうなりますか?