Re: [PHP] Eval To String

2005-12-07 Thread David Grant
Shaun

Shaun wrote:
> Is it possible to return the result of eval function to a string rather than 
> outputting directly to the browser?

ob_start();
eval('$eval = "evil";');
$output = ob_get_clean();

Cheers,

David Grant
-- 
David Grant
http://www.grant.org.uk/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Eval To String

2005-12-07 Thread Jay Blanchard
[snip]
Is it possible to return the result of eval function to a string rather than

outputting directly to the browser?

Thanks for your advice 
[/snip]

Yes.

You're welcome.

The first freakin' example in TFM http://www.php.net/eval is this;

 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] eval() to string???

2001-01-24 Thread indrek siitan

Hi,

> I want to evaluate the code in $php_code to *another* string...

you have to do it through output buffering:

  ob_start();
  eval($php_code);
  $another_string=ob_get_contents();
  ob_end_clean();


Rgds,
  Tfr

  --==< [EMAIL PROTECTED] >==< http://tfr.cafe.ee/ >==< +372-50-17621 >==-- 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] eval() to string???

2001-01-24 Thread Robert S. White

How is this going to help me?

I want to evaluate the code in $php_code to *another* string...


- Original Message -
From: Thomas Weber <>
To: Php-General <>
Sent: Wednesday, January 24, 2001 10:14 AM
Subject: AW: [PHP] eval() to string???


> try
>
> eval("\$php_code;");
>
> -Ursprüngliche Nachricht-
> Von: [ rswfire ] [mailto:[EMAIL PROTECTED]]
> Gesendet: Mittwoch, 24. Januar 2001 15:36
> An: [EMAIL PROTECTED]
> Betreff: [PHP] eval() to string???
>
>
> I want to evaluate some PHP code to a string.  How can I do this?
>
> $php_code = "echo 'hello';"
>
> I would like to evaluate the code to "hello" in another string...
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]