[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [syndication] PHP tool for parsing RSS1.0?



Dave / Jim,

    This is the output of a parser I wrote for SyndicateThe.Net and The
Snewp - there is PHP for reading it, yes - not standalone, but easily made
so. Jim was correct, it is the output of print_r() - which recursively
prints arrays -- my parser simply creates an array of arrays = up to 3 or 4
deep.
    I hadn't planned on releasing this code yet, as I am still working on
some refinements, but nothing like demand to control supply, eh?

    Incidentally, I also have a similar parser for HTTP requests - used for
SyndicateThe.Net and The Snewp (and other projects) also.

James

> Even more interesting.
>
> Now -- is it round-trip?
>
> Is there code in PHP that reads information output in this format?
>
> Dave
>
>
> > On Tue, May 28, 2002 at 01:14:02PM -0700, Dave Winer wrote:
> > > >
http://syndicatethe.net/dev/reader/?url=http://2012.antville.org/rss10
> > >
> > > James, that's interesting. Looks like a non-XML text-based object
> > > serialization format.
> > >
> > > I had not seen that before. Immediately understandable.
> >
> > it's not really a serialization format, it's the output of
> > php's print_r. (http://php.net/print_r)
> >
> > jim