2019年3月4日 星期一

php iif

The function iif does not exist in the standard PHP libraries.

But in most cases it is a 'short if expression' such as: (condition ? true : false).

沒有留言:

張貼留言

如何判斷現在FORM是在 insert mode? 還是 update mode?

只要用  if (empty({primary_key})) 就可以知道是否為新增模式了。 如果 {promary_key} 是空白的,那麼就是在新增模式;反之,就是更新模式。 以上。