i m looking for a if not statement code.
is this an if not statement:
if!()
{
}
try this code
Code:
if(!file_exists("foobar")) { mkdir("foobar"); } Just move the ! inside the parentheses, like this Code:
if(!) { } use it Code:
if (!isset($var)) { } or if (empty($var)) {} orif (!something) {} yes ! shuld be infront and in parentheses. like if(!$var) { do something }
Leave a Reply
You must be logged in to post a comment.