我想在循环中找到系数并添加文本。 该系数可能会改变。例如:10,5,3 ...... 我希望系统找到这些系数,并根据我设置的系数
添加文本Route::get('XProducts/Builder', function()
{ $section = new App\xmaster\Section();
$sections = $section->with('sectionType');
return view('xmaster.builder.sections',['sections'=>$sections]); })->name('builderfront');
实例; 110 ..文本,120 ...文本,130 ...文本 要么 $系数= 5; 105 ...文本,110 ...文本,115 ...文本 我想找到系数并添加文字
答案 0 :(得分:-1)
简单模数数学。
$coefficient=10;
$start=100;
$end=200;
for($i=$start;$i<$end;$i++){
if($i % $coefficient == 0) // if (i / coefficient) has a remainder of 0
{
echo $i . "...text";
}
}