[PHP-DEV] Re: #28186 [Fbk->Bgs]: There is a watermark with "www.pdflib.com" on my PDF

2004-04-28 Thread Derick Rethans
On Tue, 27 Apr 2004 [EMAIL PROTECTED] wrote: > ID: 28186 > Updated by: [EMAIL PROTECTED] > Reported By: rene dot ladinger at ladinger dot com > -Status: Feedback > +Status: Bogus > Bug Type: PDF related > Operating System: Windows 2000 > P

[PHP-DEV] Re: Size of integer

2004-04-28 Thread Ard Biesheuvel
Lester Caine wrote: An interesting little question has pooped up. How big is an integer? Firebird uses BIGINT or INT_64 for generator values, and the new ibase_gen_id in PHP5 returns that value as an integer. Has any thought been given to managing 64bit field values in PHP5? Actually, this 'ti

[PHP-DEV] Javascript / Php

2004-04-28 Thread Kyle Vorster
document.write(screen.width);"; $width = "document.write(screen.height);"; if (($height == "640") && ($width == "480")) { echo "height == 640 & width = 480"; } elseif (($height == "800") && ($width == "480")) { echo "2"; } elseif (($height == "800") && ($width == "600"

Re: [PHP-DEV] Javascript / Php

2004-04-28 Thread George Schlossnagle
This is not the list you're looking for. You want to ask this question on [EMAIL PROTECTED] George On Apr 28, 2004, at 8:37 AM, Kyle Vorster wrote: document.write(screen.width);"; $width = "document.write(screen.height);"; if (($height == "640") && ($width == "480")) { echo "height

Re: [PHP-DEV] Javascript / Php

2004-04-28 Thread Jason Garber
Hello, This is the internal development mailing list. Please repost your question to the "General users list" at http://www.php.net/mailing-lists.php FYI, PHP is a server side scripting language, and javascript is a client side scripting language. Javascript code will not be evaluated until l

[PHP-DEV] CVS Account Request: ortega

2004-04-28 Thread Tom Buskens
Maintenance (development) of the Net_GameServerQuery package in PEAR. (/pear/Net_GameServerQuery). Request suggested by adian. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] == object comparison bug?

2004-04-28 Thread Hans Lellelid
I'm using PHP5.0.0RC2. I saw that there was a similar question posted, but apparently that issue had already been fixed. ---code class File { public $var; function __construct($val) { $this->var = $val; } } $t1 = new File("test

[PHP-DEV] Fix requested for C++ compatibility

2004-04-28 Thread Mark Spruiell
I'd like to thank whoever fixed Zend/zend_interfaces.h in RC2 so that it avoids a "duplicate symbol" link error when building PHP with a C++ compiler. However, a similar issue was introduced in RC2 in Zend/zend_exceptions.h: ZEND_API void (*zend_throw_exception_hook)(zval *ex TSRMLS_DC); It would

Re: [PHP-DEV] Fix requested for C++ compatibility

2004-04-28 Thread Marcus Boerger
Hello Mark, Wednesday, April 28, 2004, 8:23:26 PM, you wrote: > ZEND_API void (*zend_throw_exception_hook)(zval *ex TSRMLS_DC); > It would be great if someone could prepend "extern" to the above line. done -- Best regards, Marcusmailto:[EMAIL PROTECTED] -- PHP In

[PHP-DEV] OK, who broke the build now?

2004-04-28 Thread Steph
worked fine yesterday.. (win98) -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] CVS Account Request: legend

2004-04-28 Thread jiuyuan,wang
I want to Translating the documentation to Chinese thx -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] call_user_function wrong number of parameters?

2004-04-28 Thread Bill Zeller
(Win XP Pro, PHP 5 RC 1, Visual C++ .NET) Hi, I'm trying to create an extension which calls a function defined in a PHP script. The name of this function is "someFunction". My code is here: zval **params[2], *func_name, *retval_ptr; CLS_FETCH(); ZVAL_STRING(func_name, "someFunction", 1); ZVAL_