Hi,
Is it possible to print out all variables that are active within a script
without doing it manually? This is what I would like to do:
$a = 12;
$b = 'Peter';
$c = 'Lauri';
echo '';
print_r( get_all_variables() );
echo '';
Best regards,
Peter Lauri
--
PHP General Mailing List (http://www.ph
Peter Lauri wrote:
Is it possible to print out all variables that are active within a script
without doing it manually? This is what I would like to do:
$a = 12;
$b = 'Peter';
$c = 'Lauri';
echo '';
print_r( get_all_variables() );
echo '';
30 seconds of searching the PHP site later...
http:/
Great stuff, I probably just searched the wrong words.
-Original Message-
From: Stut [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 01, 2006 6:22 PM
To: Peter Lauri
Cc: php-general@lists.php.net
Subject: Re: [PHP] All active variables?
Peter Lauri wrote:
> Is it possible to print out al
Austin Denyer wrote:
Angelo Zanetti wrote:
Hi all,
I need some recommendations for books:
are there any good books on PHP and WAP/WML? Also (OT) a recommendation
regarding books for CSS2 and XHTML.
http://www.hudzilla.org/phpbook/
Regards,
Austin.
Thanks to all those who repl
Robin Getz wrote:
I am trying to debug a php script that I downloaded, which has a memory
leak in it.
I was looking for a way to find what variables were in php's memory, and
what size, they were, but I couldn't find anything?
The script is a off-line wiki conversion tool (walks through a wi
clive wrote:
I know in PHP 5 you can use stream_socket_client() and set the flag to
STREAM_CLIENT_ASYNC_CONNECT|STREAM_CLIENT_CONNECT which opens the socket
in a non blocking mode.
in php 4 you can use fsockopen and then set the socket to non blocking.
The problem with this is that the fsocko
What's the common consensus as to a solid PHP framework to use for
application development? There seems to be a number of them out there,
but I'm not sure which one's are the most robust, actively developed,
secure, etc etc.
Thoughts?
--
PHP General Mailing List (http://www.php.net/)
To unsu
This one time, at band camp, Gabe <[EMAIL PROTECTED]> wrote:
> What's the common consensus as to a solid PHP framework to use for
> application development? There seems to be a number of them out there,
> but I'm not sure which one's are the most robust, actively developed,
> secure, etc etc.
On Tue, 2006-08-01 at 12:35 -0400, Gabe wrote:
> What's the common consensus as to a solid PHP framework to use for
> application development? There seems to be a number of them out there,
> but I'm not sure which one's are the most robust, actively developed,
> secure, etc etc.
>
OK, from m
I like what I've been seeing from Solar at solarphp.com. And Paul Jones,
the maintainer, is extremely active on the project and the community
seems to be very much in love with the framework. Community is a little
small but going pretty strong.
James Kilbride
> -Original Message-
> From:
There is no 'common consensus' but I am sure you'll be getting lots and
lots, I would even say LOTS, of sugestions.
Satyam
- Original Message -
From: "Gabe" <[EMAIL PROTECTED]>
To:
Sent: Tuesday, August 01, 2006 6:35 PM
Subject: [PHP] PHP Frameworks - Opinion
What's the common co
Hi there,
I will soon need to include a database abstraction layer in my company's
software and I am looking for the best choice to make.
The software is promoted as working with PHP4, so I wouldn't use PDO,
although I see that a PHP4 implementation of PDO exists [1] and I could
use this one (any
Hi all
Does anyone know if you can assign a new variable name based on the contents of
another variable in PHP? If so whats the syntax to do this?
I am parsing a text file that has tens of preset attributes and some of these
have hundreds of sub attributes. For example the text file contains f
Yannick Warnier wrote:
Hi there,
I will soon need to include a database abstraction layer in my company's
software and I am looking for the best choice to make.
The software is promoted as working with PHP4, so I wouldn't use PDO,
although I see that a PHP4 implementation of PDO exists [1] and
I've used PDO, PEAR::DB, and ADOdb. I like ADOdb the most. You'd love
it's new Active Record extension.
On Tue, 2006-08-01 at 18:47 +0100, Yannick Warnier wrote:
> Hi there,
>
> I will soon need to include a database abstraction layer in my company's
> software and I am looking for the best ch
Hi Bob,
Based on what you said, I would say the normal coding way of handling
this is with an array.
If you are unfamiliar with them, www.php.net/array would be a good place
to start.
-Brad
bob pilly wrote:
Hi all
Does anyone know if you can assign a new variable name based on the contents
Bob Pilly asked earlier today:
> Does anyone know if you can assign a new variable name based on the
contents of another variable in PHP? If so whats the syntax to do this?
$counter = 1;
for ($i == 0; $i < 6; $i++) {
${'newVar_' . $counter} = $counter;
$counter++;
}
echo $newVar_1 .
I would like to help, but i need some mor details.
each line of the text file is a flight?
If so, how are separeted each passenger?
It would be important to help me in thinkin somethink to help you.
"bob pilly" <[EMAIL PROTECTED]> escreveu na mensagem
news:[EMAIL PROTECTED]
> Hi all
>
> Does a
Thank you! It sure looks like cURL is exactly the tool I need. As soon
as I get it installed, I'll start playing with it.
Ray Hauge wrote:
I deal with screen-scraping a lot at work. I would suggest using cURL to
store the cookie data, and then subsequently get the data you need.
HTH
--
Satyam wrote:
There is no 'common consensus' but I am sure you'll be getting lots and
lots, I would even say LOTS, of sugestions.
I'm surprised no-one has mentioned the Zend Framework yet.
I'm looking to do a bit of a rewrite of a large PHP application in the
near future and would like t
At 10:46 PM +0100 8/1/06, Colin Guthrie wrote:
I'm surprised no-one has mentioned the Zend Framework yet.
I'm looking to do a bit of a rewrite of a large PHP application in
the near future and would like to think Zend would be a good horse
to back, but the fact no-one here has mentioned it
At 02:49 PM 8/1/2006, bob pilly wrote:
Hi all
Does anyone know if you can assign a new variable name based on the
contents of another variable in PHP? If so whats the syntax to do this?
I am parsing a text file that has tens of preset attributes and some of
these have hundreds of sub attri
On Tue, 1 Aug 2006 19:44:28 +0200
"Satyam" <[EMAIL PROTECTED]> wrote:
> There is no 'common consensus' but I am sure you'll be getting lots and
> lots, I would even say LOTS, of sugestions.
I would be very skeptical of any "suggestions" because only someone
who tried multiple frameworks would b
On Tue, 2006-08-01 at 12:35 -0400, Gabe wrote:
> What's the common consensus as to a solid PHP framework to use for
> application development? There seems to be a number of them out there,
> but I'm not sure which one's are the most robust, actively developed,
> secure, etc etc.
>
> Thoughts?
Steve Turnbull wrote:
On Tue, 2006-08-01 at 12:35 -0400, Gabe wrote:
What's the common consensus as to a solid PHP framework to use for
application development? There seems to be a number of them out there,
but I'm not sure which one's are the most robust, actively developed,
secure, etc etc.
On Tue, 2006-08-01 at 23:40 +0100, Steve Turnbull wrote:
> On Tue, 2006-08-01 at 12:35 -0400, Gabe wrote:
> > What's the common consensus as to a solid PHP framework to use for
> > application development? There seems to be a number of them out there,
> > but I'm not sure which one's are the mos
On Tue, 2006-08-01 at 18:17 -0400, tedd wrote:
> At 10:46 PM +0100 8/1/06, Colin Guthrie wrote:
> >I'm surprised no-one has mentioned the Zend Framework yet.
> >
> >I'm looking to do a bit of a rewrite of a large PHP application in
> >the near future and would like to think Zend would be a goo
Robert Cummings wrote:
On Tue, 2006-08-01 at 18:17 -0400, tedd wrote:
At 10:46 PM +0100 8/1/06, Colin Guthrie wrote:
I'm surprised no-one has mentioned the Zend Framework yet.
snip.
I own Zend Professional, but don't use it (not good or bad).
snip.
An IDE is not a framework. it's an
Colin Guthrie wrote:
Satyam wrote:
There is no 'common consensus' but I am sure you'll be getting lots
and lots, I would even say LOTS, of sugestions.
I'm surprised no-one has mentioned the Zend Framework yet.
I'm looking to do a bit of a rewrite of a large PHP application in the
near
Robert Cummings wrote:
[chop]
An IDE is not a framework, it's an IDE :)
Cheers,
Rob.
I think Rob is being unduly modest - correct me if I am wrong but he is
the core developer of the InterJinn php framework ->
http://interjinn.com - it's been out there for a while now (read:
robust, fully
On Wed, 2006-08-02 at 04:15 +0200, rich gray wrote:
> Robert Cummings wrote:
> > [chop]
> > An IDE is not a framework, it's an IDE :)
> >
> > Cheers,
> > Rob.
> >
> I think Rob is being unduly modest - correct me if I am wrong but he is
> the core developer of the InterJinn php framework ->
>
Good day!
I want to ask any comments about e107 CMS? Easy? Usefull? Extendible?
Thanks. Tony.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
32 matches
Mail list logo