Alexander Samad wrote:

Quick question

How can I do this print "This is the value ".$x->SomeFunc();
as
print "This is the value $x->SomeFunc()";




You can go:

print "This is the value @{[$x->SomeFunc()]}";

But are you sure you want to do that? ;)

Mick.


-- SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/ Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

Reply via email to