我想在if條件中動態添加條件。但它不起作用。請幫我解決這個問題。在php中動態添加條件如果條件
我想要一個像這樣的代碼
$day_difference = "some integer value";
if(sheduled_time == 'evening'){
$condition = '>';
}else{
$condition = '==';
}
然後
if($day_difference.$condition. 0){
echo "something";
}else{
echo "h";
}
解決了這個尼斯認爲,但它不這樣工作:D –