Text File

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
nakulkundra
Forum Newbie
Posts: 3
Joined: Mon Nov 09, 2009 4:21 am

Text File

Post by nakulkundra »

i am working on an apache server..
using PHP, can any one tel me 2 things....

how to create text file and
how to edit a jad file ???


Please help ..........
User avatar
requinix
Spammer :|
Posts: 6617
Joined: Wed Oct 15, 2008 2:35 am
Location: WA, USA

Re: Text File

Post by requinix »

Oh, wow, I am SO totally inspired to help you.

General Posting Guidelines
User avatar
McInfo
DevNet Resident
Posts: 1532
Joined: Wed Apr 01, 2009 1:31 pm

Re: Text File

Post by McInfo »

Manipulation of both plain text and binary files is primarily handled by Filesystem Functions, starting with fopen(). These include some specialized functions to handle common plain-text formats, like CSV and INI. Other libraries exist to handle XML and JSON and common binary formats like PDF, SQLite, ZIP, SWF, and various image formats.

JAD (Java Application Descriptor?) appears to be a plain text file. Because JAD does not have a parsing function dedicated to it, you must use String Functions.

If you're looking to do something with Java (other than just read a JAD file), the PHP manual has a section on Java Integration.

Edit: This post was recovered from search engine cache.
Last edited by McInfo on Thu Jun 17, 2010 1:51 pm, edited 1 time in total.
nakulkundra
Forum Newbie
Posts: 3
Joined: Mon Nov 09, 2009 4:21 am

Re: Text File

Post by nakulkundra »

tasairis wrote:Oh, wow, I am SO totally inspired to help you.

General Posting Guidelines
thankz
User avatar
jackpf
DevNet Resident
Posts: 2119
Joined: Sun Feb 15, 2009 7:22 pm
Location: Ipswich, UK

Re: Text File

Post by jackpf »

Brap.
Post Reply