PHP: include \ davranışı gerektirir

0 Cevap php

biz dahil her gibi \ php kullanarak bazı dosya gerektirir

require ('links.php'); VEYA include ('links.php');

Aşağıdaki iki senaryo hangisi olur

EXAMPLE

dosya follwing koduyla file.php olduğunu söylemek sağlar

<?php
echo "my things";
?>
<br />

ve biz bu hizmeti vardır

------
------
<?php
echo "about to include file";
include ('file.php')
?>
------
------

SCENARIO 1 : the included file's code is inserted in the parents\container files PHP Code and then the complete code is processed & HTML\result is generated....

anlamı, öncelikle bu kod ilk gibi konabilir

------
------
<?php
echo "about to include file";
<?php
echo "my things";
?>
<br />
?>
------
------

daha sonra işlenen

SCENARIO 2 : the included file is first processed and the result is plugged in

İlk anlamı dosya işlenecektir ve sonuç elde edilecektir dahil

mythings<br/>

ve ana \ kap \ includer kodu içine yerleştirilir ve daha sonra bu kod neaning işlenecektir sonra

------
------
<?php
echo "about to include file";
my things<br />
?>
------
------

ve şimdi işlenecektir

0 Cevap