我需要为每个包装添加一个$y + 40
变量。我似乎无法想象我的生活。还有其他人有一个有效的方法吗?
注意:这是使用wordword wrap,而不是while循环。
$y = 150;
while(the_repeater_field('unordered_list')):
$start = '<text y="'.$y + 40.'" x="172" class="bullet">•';
$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;
答案 0 :(得分:0)
尝试在evey php标签而不是(&#39;)
更改(&#34;) $start = "<text y='".$y + 40.:' x='172' class='bullet'>•";
CMIIW