意外的T_FOREACH

时间:2015-04-28 05:24:55

标签: php

我试图回应这个Foreach,我不确定这样做的正确方法。我已经尝试在foreach中创建一个变量并回显它,但这只会回显数组的最后一个值。请告诉我正确的方法:

System.Drawing.Point productLabelsPoint = new System.Drawing.Point(200, 40 + i * 50 + j * 50);

2 个答案:

答案 0 :(得分:1)

尝试$table->primary('field')而不是生成类似的字符串。

implode

或者如果想尝试你的方式 -

$glowVar = implode(',', $glows);
$client->sendMsgSpecial("Glows Updated", "Your glows have succesfully been updated. The following have been updated: " . $glowVar . ", "glows");

答案 1 :(得分:0)

您无法回应方法调用。使用变量。

$message = "Your glows have succesfully been updated. The following have been updated: ";
foreach($glows as $value) {
    $message .= $value . ', ';
}

然后用变量调用你的方法。

$client->sendMsgSpecial("Glows Updated", $message, "glows");

简短回答但希望有所帮助。