问题
I try to echo out jQuery in PHP but it gives me following error whatever I do:
Parse error: syntax error, unexpected 'foreach' (T_FOREACH), expecting ',' or ';' in /var/www/html/login/application/controllers/sellercentral.php on line 309
The code:
echo '<script>
$( document ).ready(function() {
$("#Drafts > tbody:last").append('foreach($this->central as $key2 => $value2) {
'<tr>
<td><a href='. $value2->Token .'>Edit</a></td>
<td class=T id='. $value2- >Token.'>'.htmlentities($value2->Title).'</td>
</tr>
'.}.' );
});
</script>';
回答1:
You can't use a foreach in a echo statement! Just break them up like this:
echo '<script>
$( document ).ready(function() {
$("#Drafts > tbody:last").append(';
foreach($this->central as $key2 => $value2) {
echo '<tr>
<td><a href='. $value2->Token .'>Edit</a></td>
<td class=T id='. $value2- >Token.'>'.htmlentities($value2->Title).'</td>
</tr>';
}
echo ');});</script>';
回答2:
I think you should use an echo
inside of your foreach
loop. something like that :
echo '<script>
$( document ).ready(function() {
$("#Drafts > tbody:last").append(';
foreach($this->central as $key2 => $value2) {
echo '<tr>
<td><a href='. $value2->Token .'>Edit</a></td>
<td class=T id='. $value2- >Token.'>'.htmlentities($value2->Title).'</td>
</tr>';
}
echo ' );
});
</script>';
来源:https://stackoverflow.com/questions/28244054/echo-jquery-in-php-syntax-error-cant-find-my-mistake