我在使用PHP eval
函数
解析错误:语法错误,行中出现意外
*
,
非常感谢任何帮助。
这是脚本:
<?php
get_header();
$dane = wszystkie_monety('27');
$mylink = $wpdb->get_results("SELECT * FROM kursy_kruszywa", ARRAY_N);
$zloto = $mylink[0][1];
$dolar = $mylink[2][1];
$data = $mylink[3][1];
$dokladnosc = 2;
?>
<?php
$start = 0;
if($dane[$start] != null) {
$operacja = str_replace(',', '.', $dane[$start+2]);
?>
<tr>
<td style="width: 334px; text-align: center; background-color: rgb(255, 255, 255);">
<a title="" target="" style="" rel="" href="<?php echo $dane[$start+1]; ?>" class="animacja"><img width="250" title="20_dolarow" style="" src="<?php echo $dane[$start+1]; ?>" class="aligncenter size-full wp-image-59" alt=""></a>
</td>
<td id="nazwa">
<?php echo $dane[$start]; ?>
</td>
<td id="kwota">
<?php
$expression = "$dolar*$zloto/$operacja";
eval('$wynik = '.$expression.';');
echo ceil($wynik/$dokladnosc)*$dokladnosc.',00 zł';
?>
</td>
</tr>
<?php } ?>