[PHP-DOC] cvs: phpdoc /de/functions filesystem.xml

2001-04-22 Thread Egon Schmid
eschmid Sun Apr 22 21:40:11 2001 EDT Modified files: /phpdoc/de/functionsfilesystem.xml Log: Some enhancements by Thomas. Index: phpdoc/de/functions/filesystem.xml diff -u phpdoc/de/functions/filesystem.xml:1.20 phpdoc/de/functions/filesystem.xml:1.21

[PHP-DOC] cvs: phpdoc / funclist.txt funcsummary.txt

2001-04-22 Thread Jesus M. Castagnetto
jmcastagnetto Sun Apr 22 17:42:43 2001 EDT Modified files: /phpdoc funcsummary.txt funclist.txt Log: Update of funclist.txt and funcsummary.txt Index: phpdoc/funcsummary.txt diff -u phpdoc/funcsummary.txt:1.7 phpdoc/funcsummary.txt:1.8 --- phpdoc/func

[PHP-DOC] settype doc error

2001-04-22 Thread Hojtsy Gabor
Hi! The settype doc says: int settype (string var, string type) although it should be : int settype (mixed var, string type) The first argument is not a string. If it is, you should write: $abc = "foo"; settye("abc", "integer"); Indeed you must say: settype($abc, "integer"); An example ther

Re: [PHP-DOC] settype doc error

2001-04-22 Thread eschmid+sic
On Sun, Apr 22, 2001 at 10:03:03AM +0200, Hojtsy Gabor wrote: > The settype doc says: int settype (string var, string type) > although it should be : int settype (mixed var, string type) > > The first argument is not a string. > If it is, you should write: > > $abc = "foo"; settye("abc", "int

[PHP-DOC] cvs: phpdoc /en/functions var.xml

2001-04-22 Thread Hojtsy Gabor
gobaSun Apr 22 02:31:04 2001 EDT Modified files: /phpdoc/en/functionsvar.xml Log: Corrections to settype(): o] The return type is boolen o] The first param is type of mixed o] Missing boolean type from the list o] Added two examples

Re: [PHP-DOC] settype doc error

2001-04-22 Thread Hojtsy Gabor
> This cannot be!!!? I don't have a working M$ solution here, but the > correct syntax should be: > > cvs commit -m "Comment ..." relative/path/var.xml > cvs -z3 update -dP > > Don't mix checkouts with updates. If you are in the right directory or > folders you can't do checkouts, only updates.

Re: [PHP-DOC] settype doc error

2001-04-22 Thread Hojtsy Gabor
OK it works now. There were some problems with my Repository file under the phpcvs dirs. I deleted everything and done a fresh checkout. It is ok now :) I hope my changes are good. Goba ... . . . . . Editor of the Hungarian PHP manual, Ad

Re: [PHP-DOC] settype doc error

2001-04-22 Thread eschmid+sic
On Sun, Apr 22, 2001 at 10:43:11AM +0200, Hojtsy Gabor wrote: > I have commit problems: > > I am trying to commit the new var.xml file, and I get > > E:\phpcvs>cvs commit phpdoc/en/functions/var.xml > cvs [server aborted]: cannot check in to /repository/CVSROOT/Emptydir > > I get the same when

Re: [PHP-DOC] Could somebody pls. correct a typo?

2001-04-22 Thread Thomas
Hi Daniel, You're right, this was just a type-mismatch. And I personally have no difficulty with it, I've tried it on my Netscape 4.73, and 4.77, and it works fine. If it's really interesting which Version it was, I'd have to ask next week. Best regards, Thomas Daniel Beckham wrote: > If h

Re: [PHP-DOC] nl2br and (was : could someone correct atypo...?

2001-04-22 Thread Thomas
Damien Seguy wrote: > So, the approach should appear when version >= 4.04pl1, but for > source distribution, this will be a version >= 4.05 availability. > > I suggest to add this version availability information added in the doc. > If anyone is using win32 binaries, it would be nice to test it

Re: [PHP-DOC] settype doc error

2001-04-22 Thread Hojtsy Gabor
I have commit problems: I am trying to commit the new var.xml file, and I get E:\phpcvs>cvs commit phpdoc/en/functions/var.xml cvs [server aborted]: cannot check in to /repository/CVSROOT/Emptydir I get the same when I specify the full CVSROOT: E:\phpcvs>cvs -d :pserver:[EMAIL PROTECTED]:/repo

Re: [PHP-DOC] settype doc error

2001-04-22 Thread eschmid+sic
On Sun, Apr 22, 2001 at 10:19:46AM +0200, Hojtsy Gabor wrote: > > > $abc = "foo"; settye("abc", "integer"); > > > > > > Indeed you must say: settype($abc, "integer"); > > > > > > An example there would be good. :) > > > > What types can be $abc? > > Any type. Array, string, integer ... The sa

[PHP-DOC] PHP3.DE

2001-04-22 Thread Christine Hall
Title: Hello, I visited php3.de and I noticed that you are not listed on some search engines. I am sure you can increase the number of people who visit php3.de . Do you know TrafficMagnet? TrafficMagnet is a unique technology that automatically submits your web site to over 300,000+ sear

Re: [PHP-DOC] php redirect

2001-04-22 Thread Daniel Beckham
Please do not post general help questions to the PHP documentation list. This list is primarly for discussing PHP documentation additions, corrections or anything else pertaining to writing PHP documentation. You probably want to unsubscribe from this list and then subscribe yourself to the PHP G

Re: [PHP-DOC] settype doc error

2001-04-22 Thread Hojtsy Gabor
> > The settype doc says: int settype (string var, string type) > > although it should be : int settype (mixed var, string type) > > > > The first argument is not a string. > > If it is, you should write: > > > > $abc = "foo"; settye("abc", "integer"); > > > > Indeed you must say: settype($ab