PHP-da faýllary goýmak
Bizde bir faýl bolsun:
<?php
echo 'index';
?>
Ýene bir ikinji faýl hem bolsun:
<?php
echo 'test';
?>
Geliň ikinji faýlyň mazmunyny birinjisine goýup göreýliň.
Bu include operator bilen amala aşyrylýar:
<?php
include 'test.php';
echo 'index';
?>
Şol bir faýly näçe gezek bolsa hem goýmak bolýar:
<?php
include 'test.php';
include 'test.php';
include 'test.php';
echo 'index';
?>
file1.php, file2.php,
file3.php faýllaryny düzüň. Olary siziň
esasy faýlyňyza birikdiriň.