PHP - Bir iç dahil mi ve yürütme EĞER girmezse IF dahil edilecek?

0 Cevap php

Soru kendi kendini açıklayıcı. Örnek:

$x = 0;
if($x == 2)
{
include("stackoverflow.php");
}

Dosya "stackoverflow.php" dahil olacak mı?

and a Complementary Question:
Look to this example:

//thispage.php contents
$x = $_GET['x'];
if($x == 2)
{
include("stackoverflow.php");
}
<a href="thispage.php?x=2">Click Here</a>

Dosya "thispage.php" bilgisayarların bir sürü her saniye gönderilmesini suposse sağlar. IF içindeki kodları "stackoverflow.php" IF tetikleyen edilmemiş ise insanlara göndermek için dosya küçük yapacaktır dahil mi?

Teşekkür peşin

0 Cevap