Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:14918 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 23354 invoked by uid 1010); 14 Feb 2005 16:13:37 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 23325 invoked from network); 14 Feb 2005 16:13:37 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 14 Feb 2005 16:13:37 -0000 X-Host-Fingerprint: 68.157.246.80 mx1.distinctinnovations.com Windows 2000 SP4, XP SP1 Received: from ([68.157.246.80:1301] helo=distinctinnovations.com) by pb1.pair.com (ecelerity 1.2.11 (r4403)) with SMTP id 7B/00-18098-03EC0124 for ; Mon, 14 Feb 2005 11:13:36 -0500 Received: by distinctinnovations.com (Wildcat! SMTP Router v6.0.451.3) for internals@lists.php.net; Mon, 14 Feb 2005 06:22:50 -0500 Received: from ns2.distinctinnovations.com ([68.157.246.71]) EHLO=cl1823 by distinctinnovations.com (Wildcat! SMTP v6.0.451.3) with SMTP id 1075745460; Mon, 14 Feb 2005 06:22:48 -0500 Message-ID: <002e01c51287$2f8fdf10$71f69d44@setechusa.com> To: Date: Mon, 14 Feb 2005 06:20:27 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1478 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1478 X-Antivirus-Remover: Message filtered with wsAV v2.0.0 Build 001 Subject: Returnng Object From: chris.cranford@tkdsoftware.com ("Chris Cranford") I have been able to create objects in a function call in my extension and use them in my php page; however I would rather do something like: $myobj = myfunc(); echo $myobj->property; How am I suppose to return an object from a function?