Home
Forums
Programming
Web Development
Tutorials
Snippets
Blogs
Projects
Corner Cube
Lounge
Login
Join for Free!
Programming Help
C and C++
Visual Basic
Java
VB.NET
C#
ASP.NET
PHP
ColdFusion
Perl and Python
Ruby
Databases
Other Languages
Game Programming
Software Development
Computer Science
Industry News
Web Development
Web Development
HTML & CSS
JavaScript
Graphic Design
Flash & ActionScript
Blogging
SEO & Advertising
Web Servers & Hosting
Site Check
Projects
Advertise Your Services
Request a Service
Discuss Projects
What's Here?
Members:
84,866
Replies:
353,559
Topics:
51,576
Snippets:
1,757
Tutorials:
418
Total Online:
1,414
Members:
48
Guests:
1,366
Who's Online?
jens
sno
BrainStew
MichaelHenry
calamari
Martyr2
RodgerB
Zhalix
zozomoon
Whizzy
joseph_smithy
DevWalt
JiYoonIt
bmahony993
.Maleficus.
Code Snippets
PHP Source Code
Welcome to Dream.In.Code
Getting PHP Help is Easy!
Join
84,866 PHP Programmers
. There are
1,414 online right now!
Ask your question and get quick answers from Dream.In.Code experts. Join the #1 programming help community on the internet!
Registration is fast and FREE...
Join Now!
Chat LIVE With a PHP Expert
Powered by LivePerson.com
Register to Make This Box Go Away!
Alphabetize lines of a text file
This code reads all the lines in a text file then alphabetizes it and overwrites the file with the alphabetized version
Submitted By:
Dezmond
Actions:
Rating:
0
1
2
3
4
5
Views:
249
Language:
PHP
Last Modified:
March 25, 2008
Instructions:
Just replace XXX with path to text file
Snippet
$fh
=
fopen
(
"XXX"
,
'r'
)
;
$i
=
0
;
flock
(
$fh
, LOCK_SH
)
;
while
(
!
feof
(
$fh
)
)
{
$data
=
fgets
(
$fh
,
500
)
;
$array
[
$i
]
=
$data
;
$i
++;
}
flock
(
$fh
, LOCK_UN
)
;
fclose
(
$fh
)
;
sort
(
$array
)
;
$count
=
count
(
$array
)
;
$gamelist
=
fopen
(
"XXX"
,
'w'
)
;
flock
(
$gamelist
, LOCK_EX
)
;
for
(
$i
=
0
;
$i
<=
$count
;
$i
++
)
{
fwrite
(
$fh
,
$array
[
$i
]
)
;
}
flock
(
$fh
, LOCK_UN
)
;
fclose
(
$fh
)
;
Copy & Paste
$fh = fopen("XXX", 'r'); $i = 0; flock($fh, LOCK_SH); while (!feof($fh)) { $data = fgets($fh, 500); $array[$i] = $data; $i++; } flock($fh, LOCK_UN); fclose($fh); sort($array); $count = count($array); $gamelist = fopen("XXX", 'w'); flock($gamelist, LOCK_EX); for($i = 0; $i <= $count; $i++) { fwrite($fh, $array[$i]); } flock($fh, LOCK_UN); fclose($fh);
Comments
Dezmond
2008-04-04 22:10:58
Well Dezmond, I would like to say that this is, quite possible the best thing ever...
Add comment
You must be registered and logged on to </dream.in.code> to leave comments.
Advertising
|
Terms of Use
|
About Us
|
Site Map
Forum Index:
Programming Help
|
C and C++
|
Visual Basic
|
Java
|
VB.NET
|
C#
|
ASP.NET
|
PHP
|
ColdFusion
|
Perl and Python
|
Ruby
|
Databases
|
Other Languages
|
Game Programming
|
Software Development
|
Computer Science
|
Industry News
|
Programming Tutorials
|
C++ Tutorials
|
Visual Basic Tutorials
|
Java Tutorials
|
VB.NET Tutorials
|
C# Tutorials
|
PHP Tutorials
|
Linux Tutorials
|
ColdFusion Tutorials
|
Windows Tutorials
|
HTML/JavaScript Tutorials
|
CSS Tutorials
|
Flash Tutorials
|
Web Promotion Tutorials
|
Photoshop Tutorials
|
Software Development Tutorials
|
Database Tutorials
|
Copyright 2001-2008
MediaGroup1 LLC
, All Rights Reserved
A
MediaGroup1 LLC
Production - Version 6.0.2.1.36
Search
w00t
Over 265,000 Pages!
Live PHP Help!
PHP Tutorials
Working With Excel Files. (comma Delimited Or Csv)
Textarea Editor
Working With Excel Files. (tab-delimited)
Send Emails Using Php (basic)
Dynamic Web Site
PHP Quick Reference (Cheat) Sheet
mySQL & PHP: A Beginners Look
Practical PHP Coding Standards
Upload A File From A Form
Calculating age tutorial
26 More PHP Tutorials...
Reference Sheets
PHP Snippets
Full url of the page
IP Logger
online file editor
Reading text files
Checkbox list storing
Pear Mail_Queue interface
Page Generation
Convert a 64 bit number
imap class
Generating image with random number (anti-bot)
108 More PHP Snippets...
Bye Bye Ads
Free
DIC
T-Shirt
Related Sites
DayDream Graphics
Scripts
PhotoshopForums.com
DeveloperCube
WebDevBooks.com
CommunityAdmins.com
CommunityPromotion.com
Monthly Drawing
Partners
BizTalk Adaptors
Planet Source Code
ASPAlliance
Top Contributors
Top 10 Kudos This Month
sam_benne
(200)
PsychoCoder
(200)
BenignDesign
(100)
ferrari12508
(100)
joeyadms
(50)
bhandari
(50)
fyrestorm
(50)
deepamanohar
(50)
Mikhail
(50)
rgfirefly24
(50)