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 ..........
Text File
Moderator: General Moderators
Re: Text File
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.
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
thankz
Re: Text File
Brap.