我想实现这样的目标:
foreach ( $posts as $post ) {
if ( $a = $b ) ) {
// if true +1 to the result;
} else {
// if not true -2 to the result;
}
}
echo \'Your result is X\';
如何用计算结果替换X?计算代码应该是什么样子?
最合适的回答,由SO网友:Buttered_Toast 整理而成
你是说像这样吗
$result = 10;
foreach ( $posts as $post ) {
if ( $a = $b ) ) {
$result += 1;
} else {
$result -= 2;
}
}
echo \'Your result is \' . $result;
这是我对提供的信息所能做的最好的了