有人可以向我解释一下我在 word press 中查看 php 使用时经常遇到的替代语法的使用。以条件为例:
我希望看到:
if(10==10)
echo 'this is true and will be shown';
相反,我看到:
if(10==10):
echo 'this is true and will be shown;
end if;
另一个例子:
! empty ( $classes_names )
and $class_names = ' class="'. esc_attr( $class_names ) . '"';
':' 和 'end if;' 是怎么回事 最后一个例子的语法不是我以前见过的那样放在一起的东西。