我有一个数据库表
表:example_tbl
| amount | recurring | frequency |
| 100 | 150 | 8,monthly |
| 200 | 250 | 1,annually |
我试图在开关中选择频率值,它只是不想工作,我认为这是由于频率列中的逗号值。任何帮助表示赞赏:
switch($item['frequency'])
{
case 'monthly':
code here....
break;
case 'annually':
code here...
break;
}
谢谢