Note: I çıkış tamponlama kullanıyorum. Sadece kafası () ve ayak () işlevleri sarılı.
Ben şu şablonu kullanarak benim geçerli PHP projesinde sayfaları oluşturabilirsiniz:
<?php
include 'bootstrap.php';
head();
?>
<!-- Page content here -->
<?php
foot();
?>
Aşağıdaki örnek kalıp () uygun bir kullanım mı? Ayrıca, sorunların ne tür olabilir, bu benim için neden varsa?
<?php
include 'bootstrap.php';
head();
try
{
//Simulate throwing an exception from some class
throw new Exception('Something went wrong!');
}
catch(Exception $e)
{
?>
<p>Please fix the following error:</p>
<p><?php echo $e->getMessage(); ?></p>
<?php
foot();
die();
}
//If no exception is thrown above, continue script
doSomething();
doSomeOtherThing();
foot();
?>
Temelde, bunu birden fazla görevleri ile bir komut dosyası var ve ben yürütülmesini yazısının kalan kısmını önlerken giriş hataları kullanıcıya bildirmek için zarif bir şekilde kurmak için çalışıyorum.
Teşekkürler!