Burada herkes genellikle bir kalıp () komutu yapıştırılmış 'veya' Önermeler, bilmeli:
$foo = bar() or die('Error: bar function return false.');
Biz böyle bir şey görmek zamanların en:
mysql_query('SELECT ...') or die('Error in during the query');
Ancak, ben deyim nasıl çalıştığını tam olarak bu 'veya' anlayamıyorum.
I) yerine kalıbın (yeni bir durum atmak isterdim, ancak:
try{
$foo = bar() or throw new Exception('We have a problem here');
Çalışmak, ve ne yapmaz
$foo = bar() or function(){ throw new Exception('We have a problem here'); }
Bunu ben buldum tek yolu bu korkunç düşünce şudur:
function ThrowMe($mess, $code){
throw new Exception($mess, $code);
}
try{
$foo = bar() or ThrowMe('We have a problem in here', 666);
}catch(Exception $e){
echo $e->getMessage();
}
Ancak doğrudan 'veya' deyimi sonra yeni bir özel durum için bir yol var mı?
Veya yapının bu tür (i tüm ThrowMe işlevini liek yok) zorunludur:
try{
$foo = bar();
if(!$foo){
throw new Exception('We have a problem in here');
}
}catch(Exception $e){
echo $e->getMessage();
}
Edit: ne istediğim bir kullanımını önlemek için gerçekten olup olmadığını () i yapmak her potansiyel tehlikeli çalışmasını kontrol, örneğin:
#The echo $e->getMessage(); is just an example, in real life this have no sense!
try{
$foo = bar();
if(!$foo){
throw new Exception('Problems with bar()');
}
$aa = bb($foo);
if(!$aa){
throw new Exception('Problems with bb()');
}
//...and so on!
}catch(Exception $e){
echo $e->getMessage();
}
#But i relly prefer to use something like:
try{
$foo = bar() or throw new Exception('Problems with bar()');
$aa = bb($foo) or throw new Exception('Problems with bb()');
//...and so on!
}catch(Exception $e){
echo $e->getMessage();
}
#Actually, the only way i figured out is:
try{
$foo = bar() or throw new ThrowMe('Problems with bar()', 1);
$aa = bb($foo) or throw new ThrowMe('Problems with bb()', 2);
//...and so on!
}catch(Exception $e){
echo $e->getMessage();
}
#But i'll love to thro the exception directly instead of trick it with ThrowMe function.