Answers for "php if condition without if"

PHP
0

if certain condition is met exit if block php

if($bla){do{
  $bla = get_bla();
  if(empty($bla)) break;
  do($bla);
}while(false);}
Posted by: Guest on September-18-2020

Browse Popular Code Answers by Language