我正在使用此代码将 HTML 代码存储在一个名为$conversions
$conversions = "GBP " . number_format($file*0.84) . "CHF " . number_format($file*1.23)
但是我似乎无法弄清楚如何<br>
在“CHF”这个词之前添加一个。
有任何想法吗?
整个代码如下:
<?php
$file = get_field('fl_price');
if(trim($file) == ""){echo 'Price on Application' ;}else{$conversions = "GBP " . number_format($file*0.84) . "<br />CHF " . number_format($file*1.23) ;echo 'EUR ' . number_format($file) . "</br><a class=\"wp-tooltip\" title=\" $conversions \">Other Currencies</a>" ;}
?>