Re: [PHP] is_object($_SESSION['dagobertduck']);

2004-05-27 Thread Matthias H. Risse
thanks. fixed that with simple un/serialize(). somehow i assumed php would be capable of recognizing automatically that it makes sense with object to do this automatically (who really needs unexplicitly a string instead of o valid object when puttin them into a session-var?) thanks anyway m -- PHP

[PHP] is_object($_SESSION['dagobertduck']);

2004-05-26 Thread Matthias H. Risse
hi: i wonder why... if(!is_object($_SESSION['xmlModel'])) echo there is no obj present, juppa**; at my place always results in TRUE or echoing the there is no.. , even if var_dump reports that $_SESSION['xmlModel'] is an object. did i screw something up or are there special policies with

[PHP] a passion to perform ;)

2004-05-13 Thread Matthias H. Risse
Hi, i just benchmarked some of my applications with PEAR::Benchmark and would like to know if any of you have good literature regarding PHP and performance in generall? I am not talking about precompiled scripts (ioncube, zend, ..) Basically I am trying to find out how good a standard HTML

[PHP] Re: exclude_once(); ?

2004-05-10 Thread Matthias H. Risse
or if your PHP versions is prior to 4.3.0 use ini_set('include_path', '.:/path'): http://de3.php.net/manual/en/function.ini-set.php Yes that was my idea, too. Probably its best to kick there whole include-path and substitute it with my own. Lets hope it has nothing to do with the auto_append

Re: [PHP] PHP /\ UML

2004-05-10 Thread Matthias H. Risse
thanks. i just dislike the idea of usingdesktop apps bound to a single gui. why the hell we need this in times of java/awt/swing, .net, xul and other funky technologies? any more ideas? /m -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP /\ UML

2004-05-09 Thread Matthias H. Risse
Hi, I wonder if anyone here is aware of UML Tools for PHP? I know of ArgoUML whichs PHP-codegenerator seems to be very beta. Maybe there are or are planned and well intergrated plugins for Zend Studio, PHPEd, TruStudio/Eclipse or alike? Basically I would be interrested in a solution that really

[PHP] exclude_once(); ?

2004-05-09 Thread Matthias H. Risse
Hi again! Question: Does anyone know of a possibility to exclude files which have been included _before_ my script starts on the fly (e.g. at the first lines after the entrypoint) ? Reasons: This ISP of my customer somehow includes a bunch of old PEAR files by default which I dont need or of