Opening a Text File using PHP - Fixing the Format -
basically, text file contains info:
with parallel , serial ----- [system info] ----------------------------------------------------------- property value machine type at/at compatible infrared (ir) supported no dmi system uuid 809ec223-dad7dd11-a2f33085-a993ffac uuid 23c29e80-d7da-11dd-a2f3-3085a993ffac disk space disk c: 89 gb available, 97 gb total, 89 gb free disk space disk d: 355 gb available, 368 gb total, 355 gb free disk space disk f: 274 mb available, 3837 mb total, 274 mb free physical memory 1724 mb total, 1173 mb free memory load 31% virtual memory 3619 mb total, 3184 mb free pagefile name \??\c:\pagefile.sys pagefile size 2046 mb in use 35 mb max used 35 mb registry size 3 mb (current), 120 mb (maximum) profile guid {bef54e40-80cb-11e2-a600-806d6172696f} system clock interval 15 ms ----- [motherboard] --------------------------------------- property value manufacturer asustek computer inc. model p8h61-m lx r2.0 version rev x.0x serial number 120801441113185 north bridge intel id0100 revision 09 south bridge intel id1c5c revision 09 cpu intel(r) pentium(r) cpu g645 @ 2.90ghz cpu socket system slots 4 pci memory summary maximum capacity 16384 mbytes memory slots 2 error correction none warning! accuracy of dmi data cannot guaranteed
however using code in php open it:
<?php if(isset($_post["submit"])){ $myfile = fopen("baliwag_04162015.txt", "r") or die("unable open file!"); echo fread($myfile,filesize("baliwag_04162015.txt")); fclose($myfile); } ?>
i this:
with parallel , serial ----- [system info] ----------------------------------------------------------- property value machine type at/at compatible infrared (ir) supported no dmi system uuid 809ec223-dad7dd11-a2f33085-a993ffac uuid 23c29e80-d7da-11dd-a2f3-3085a993ffac disk space disk c: 89 gb available, 97 gb total, 89 gb free disk space disk d: 355 gb available, 368 gb total, 355 gb free disk space disk f: 274 mb available, 3837 mb total, 274 mb free physical memory 1724 mb total, 1173 mb free memory load 31% virtual memory 3619 mb total, 3184 mb free pagefile name \??\c:\pagefile.sys pagefile size 2046 mb in use 35 mb max used 35 mb registry size 3 mb (current), 120 mb (maximum) profile guid {bef54e40-80cb-11e2-a600-806d6172696f} system clock interval 15 ms ----- [motherboard] --------------------------------------- property value manufacturer asustek computer inc. model p8h61-m lx r2.0 version rev x.0x serial number 120801441113185 north bridge intel id0100 revision 09 south bridge intel id1c5c revision 09 cpu intel(r) pentium(r) cpu g645 @ 2.90ghz cpu socket system slots 4 pci memory summary maximum capacity 16384 mbytes memory slots 2 error correction none warning! accuracy of dmi data cannot guaranteed
what can can achieve output:
with parallel , serial ----- [system info] ----------------------------------------------------------- property value machine type at/at compatible infrared (ir) supported no dmi system uuid 809ec223-dad7dd11-a2f33085-a993ffac uuid 23c29e80-d7da-11dd-a2f3-3085a993ffac disk space disk c: 89 gb available, 97 gb total, 89 gb free disk space disk d: 355 gb available, 368 gb total, 355 gb free disk space disk f: 274 mb available, 3837 mb total, 274 mb free physical memory 1724 mb total, 1173 mb free memory load 31% virtual memory 3619 mb total, 3184 mb free pagefile name \??\c:\pagefile.sys pagefile size 2046 mb in use 35 mb max used 35 mb registry size 3 mb (current), 120 mb (maximum) profile guid {bef54e40-80cb-11e2-a600-806d6172696f} system clock interval 15 ms ----- [motherboard] --------------------------------------- property value manufacturer asustek computer inc. model p8h61-m lx r2.0 version rev x.0x serial number 120801441113185 north bridge intel id0100 revision 09 south bridge intel id1c5c revision 09 cpu intel(r) pentium(r) cpu g645 @ 2.90ghz cpu socket system slots 4 pci memory summary maximum capacity 16384 mbytes memory slots 2 error correction none warning! accuracy of dmi data cannot guaranteed
if you're outputting in browser, yeah case. if want formatting following inside browser showing it, you'll need add <pre>
pre format tag:
echo '<pre>'; echo fread($myfile,filesize("baliwag_04162015.txt")); echo '</pre>';
hint: can check out view source
, you'll see there okay.
Comments
Post a Comment