将数学变量添加到wordwrap中

时间:2014-07-22 07:43:31

标签: php str-replace

我需要为每个包装添加一个$y + 40变量。我似乎无法想象我的生活。还有其他人有一个有效的方法吗?

注意:这是使用wordword wrap,而不是while循环。

$y = 150; 
while(the_repeater_field('unordered_list')):

    $start = '<text y="'.$y + 40.'" x="172" class="bullet">&#8226;';
    $text = $start.wordwrap(get_sub_field('list_item'), 10, "</text>".$start, 0); ?>
    echo str_replace(array("<strong>","</strong>"), array("<tspan y='". $y ."' x='172' font-weight='bold'>","</tspan>"), $text); 

endwhile;    

1 个答案:

答案 0 :(得分:0)

尝试在evey php标签而不是(&#39;)

更改(&#34;)
 $start = "<text y='".$y + 40.:' x='172' class='bullet'>&#8226;";

CMIIW