php-windows | 2001042
Date: 04/18/01
- Next message: Plutarck: "Re: [PHP-WIN] Class Constructors And PHP on Win2K"
- Previous message: Freedom: "[PHP-WIN] Class Constructors And PHP on Win2K"
- Maybe in reply to: Freedom: "[PHP-WIN] Class Constructors And PHP on Win2K"
- Next in thread: Plutarck: "Re: [PHP-WIN] Class Constructors And PHP on Win2K"
- Reply: Plutarck: "Re: [PHP-WIN] Class Constructors And PHP on Win2K"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Just tested your code
<?php
class Foo {
var $classVariable;
function Foo ( $var1 ) {
$this->classVariable = $var1;
}
}
$anotherVariable = 5;
$objFoo = new Foo ( $anotherVariable );
?>
This works fine on my W2K box. There should be no problems uses classes and this way on any Windows platform. I'm using php4.0.5-dev though. Not sure if that can have anything to do with your errors.
- Frank
> I've a bad headache here.
>
> I have a some class Foo with constructor Foo like this:
>
> class Foo {
>
> var $classVariable;
>
> function Foo ( $var1 ) {
> $this->classVariable = $var1;
> }
>
> and furthermore i have a class call like this:
>
> $objFoo = new Foo ( $anotherVariable );
>
> i think this is a perfectly legal piece of code, and it works just fine on
> FreeBSD/Apache/PHP 4.0.4pl1
>
> but on Win2K Server and IIS5 with PHP 4.0.4pl1 running as CGI, this code
> makes php.exe crash.
> windows says that that the referenced memory could not be "written".
>
> what's this all about? in classes without any contructors i do not get any
> errors. Does the windows PHP have some imcompability with class
> constructors?!?
>
> please help and thanks in advance.
>
>
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: php-windows-unsubscribe <email protected>
> For additional commands, e-mail: php-windows-help <email protected>
> To contact the list administrators, e-mail: php-list-admin <email protected>
>
>
>
-- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-windows-unsubscribe <email protected> For additional commands, e-mail: php-windows-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Plutarck: "Re: [PHP-WIN] Class Constructors And PHP on Win2K"
- Previous message: Freedom: "[PHP-WIN] Class Constructors And PHP on Win2K"
- Maybe in reply to: Freedom: "[PHP-WIN] Class Constructors And PHP on Win2K"
- Next in thread: Plutarck: "Re: [PHP-WIN] Class Constructors And PHP on Win2K"
- Reply: Plutarck: "Re: [PHP-WIN] Class Constructors And PHP on Win2K"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

