Dosya okuma işleminde sorun yaşamaktayım eksik okuyor internette araştırdım bulamadım kodlar şu şekilde,
<?php $dizin = "yazi.txt"; $belge = fopen($dizin, "r"); ?> <?=fread($belge, 10000000)?>
Çıktı şu şekilde
DocumentRoot "b:/xampp/sub/local" ServerName localhost Options Indexes FollowSymLinks AllowOverride All Require all granted ErrorLog "logs/localhost-error.log" CustomLog "logs/localhost-access.log" common DocumentRoot "b:/xampp/sub/b" ServerName b.localhost Options Indexes FollowSymLinks AllowOverride All Require all granted ErrorLog "logs/b-error.log" CustomLog "logs/b-access.log" commonyazi.txt dosyası şu şekilde
<VirtualHost *:80> DocumentRoot "b:/xampp/sub/local" ServerName localhost <Directory "b:/xampp/sub/local"> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory> ErrorLog "logs/localhost-error.log" CustomLog "logs/localhost-access.log" common </VirtualHost> <VirtualHost *:80> DocumentRoot "b:/xampp/sub/b" ServerName b.localhost <Directory "b:/xampp/sub/b"> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory> ErrorLog "logs/b-error.log" CustomLog "logs/b-access.log" common </VirtualHost>Okurken hem hepsini düz yazıyor txt de ki gibi alta alta okumuyor hemde örnek olarak <VirtualHost gibi tagl olanları okumuyor yardımcı olur musunuz şimdiden herkese teşekkürler.