This question already has answers here:
The 3 different equals
(5个答案)
两年前关闭。
我正在学习PHP,而我的echo正在回显错误的数据。
 $user_post=4;

 if($user_post=5){
    echo "User has 5 posts.";
 }else{
    echo "Cannot continue! Not enough posts: $user_post"; die();
 }

谢谢你的帮助。

最佳答案

你的if不正确。
必须使用=,而不是=检查PHP中的somethng是否等于。

if($user_post==5)

关于php - PHP回显,如果不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41531554/

10-12 12:38
查看更多