Ben yazıyorum bir PHP script için önbelleğe alma uygulamak çalışıyorum, ama ben şu sorunun doğru çekiliyorum. Ben komut diğer PHP sayfaları dahil olmak istiyorum, ama ben önbelleğe alınmış dosya geçmek ve bu komut dosyası ve ana sayfayı çıkar gömülü komut çıkmak, ama ana sayfada kod kalanını ayrıştırmak değil çalıştığınızda . Örnek için aşağıdaki kodu bakın.
index.php
<?php
echo "Hello World!<br />";
include("file2.php");
echo "This line will not be printed";
?>
file2.php
<?php
$whatever = true;
if ($whatever == true) {
echo "file2.php has been included<br />";
exit; // This stops both scripts from further execution
}
// Additional code here
?>
If the above index.php is executed you get the following output:
Hello World!
file2.php has been included
Ancak, bu gibi bakmaya çalışıyorum:
Hello World!
file2.php has been included
This line will not be printed
Teşekkürler yardımcı olanlar için gelişmiş!