473,804 Members | 3,475 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

return object instance

How do you return an object from a function? Take the following
snippet...

class Stuff
{
public $nNum;
public $szText;
}

function MakeStuff
{
$oObject = new Stuff;

$oObject->nNum = 123;
$oObject->szText = "Hello";

return $oObject;
}

function EntryPoint
{
$oStuff = MakeStuff(); // oStuff will equal NULL
}

I've tried all sorts but i just can't get an object passed out of a
function. Its mainly useful for returning a collection of errors and
the like. But how do you do it in php5?

If anyone could help i would be eternally grateful.
Jul 17 '05 #1
3 6692
never-aways wrote:
How do you return an object from a function? Take the following
snippet...

class Stuff
{
public $nNum;
public $szText;
}

function MakeStuff
{
$oObject = new Stuff;

$oObject->nNum = 123;
$oObject->szText = "Hello";

return $oObject;
}

function EntryPoint
{
$oStuff = MakeStuff(); // oStuff will equal NULL
}

I've tried all sorts but i just can't get an object passed out of a
function. Its mainly useful for returning a collection of errors and
the like. But how do you do it in php5?

If anyone could help i would be eternally grateful.

You need to write your function definitions like this:

function MakeStuff() {

}
function EntryPoint() {

}

Note the parentheses.

<?php
class Stuff {
public $nNum;
public $szText;
}

function MakeStuff() {
$oObject = new Stuff;
$oObject->nNum = 123;
$oObject->szText = "Hello";
return $oObject;
}

function EntryPoint() {
$oStuff = MakeStuff(); // oStuff will equal NULL
var_dump($oStuf f);
}

EntryPoint();
?>

output:

object(Stuff)#1 (2) {
["nNum"]=>
int(123)
["szText"]=>
string(5) "Hello"
}

HTH,
JP

--
Sorry, <de*****@cauce. org> is a spam trap.
Real e-mail address unavailable. 5000+ spams per month.
Jul 17 '05 #2
On Thu, 17 Feb 2005 17:05:51 +0100, Jan Pieter Kunst
<de*****@cauce. org> wrote:
never-aways wrote:
How do you return an object from a function? Take the following
snippet...

class Stuff
{
public $nNum;
public $szText;
}

function MakeStuff
{
$oObject = new Stuff;

$oObject->nNum = 123;
$oObject->szText = "Hello";

return $oObject;
}

function EntryPoint
{
$oStuff = MakeStuff(); // oStuff will equal NULL
}

I've tried all sorts but i just can't get an object passed out of a
function. Its mainly useful for returning a collection of errors and
the like. But how do you do it in php5?

If anyone could help i would be eternally grateful.

You need to write your function definitions like this:

function MakeStuff() {

}
function EntryPoint() {

}

Note the parentheses.

<?php
class Stuff {
public $nNum;
public $szText;
}

function MakeStuff() {
$oObject = new Stuff;
$oObject->nNum = 123;
$oObject->szText = "Hello";
return $oObject;
}

function EntryPoint() {
$oStuff = MakeStuff(); // oStuff will equal NULL
var_dump($oStuf f);
}

EntryPoint() ;
?>

output:

object(Stuff)# 1 (2) {
["nNum"]=>
int(123)
["szText"]=>
string(5) "Hello"
}

HTH,
JP

Oops, i do usually have the parenthasis, somehow forgot to add them
whilst composing the example.

Also, this code seems to work when i expected it not to. Must be
something else about my site that's messing up.

Sorry about that. I always make comedy mistakes when starting out
with a new language.
Jul 17 '05 #3
On Thu, 17 Feb 2005 15:55:01 GMT, never-aways <no****@nospam. com>
wrote:
How do you return an object from a function? Take the following
snippet...

class Stuff
{
public $nNum;
public $szText;
}

function MakeStuff
{
$oObject = new Stuff;

$oObject->nNum = 123;
$oObject->szText = "Hello";

return $oObject;
}

function EntryPoint
{
$oStuff = MakeStuff(); // oStuff will equal NULL
}

I've tried all sorts but i just can't get an object passed out of a
function. Its mainly useful for returning a collection of errors and
the like. But how do you do it in php5?

If anyone could help i would be eternally grateful.


OK, it appears to be a problem with the debugger.
I'm using http://dd.cron.ru/dbg/ together with PHPEclipse.

var_dump displays the correct contents, as does echoing individual
vars. BUT, the debugger shows the returned object to be NULL.
Jul 17 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
1952
by: Tom Leylan | last post by:
(I posted this in languages.vb also... I can't figure out where things go if you use a little of a lot of things) Hi all... I'm looking for an example (or a pointer to one) related to the following. I have a WebService (it works) that fetches data, turns it into XML and returns it to a vb.net client. The "data" though represents property values for an object which the vb.net client has created and now has to load. Just about every...
14
1447
by: marduk | last post by:
I couldn't think of a good subject.. Basically, say I have a class class Spam: def __init__(self, x): self.x = x then if I create two instances:
11
392
by: Tom Leylan | last post by:
(I posted this in languages.vb also... I can't figure out where things go if you use a little of a lot of things) Hi all... I'm looking for an example (or a pointer to one) related to the following. I have a WebService (it works) that fetches data, turns it into XML and returns it to a vb.net client. The "data" though represents property values for an object which the vb.net client has created and now has to load. Just about every...
9
3222
by: MSDNAndi | last post by:
Hi, I have a set of simple webservices calls that worked fine using .NET Framework 1.0. I am calling a Java/Apache based webservices, the calling side is not able to supply a proper WSDL. What it does is to call a webservice with two parameters, one being a integer, the other one being a "String" which contains XML (not the best practice, however that is the target interface and we cannot change that).
6
1922
by: Bo Yang | last post by:
I know the below code is wrong: Object & test(){ return Object() ;} Object & v = test() ; the Object is just a temporary variable, so you the variable may be reference to nothing. And I try to this:
0
9708
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10589
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10340
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10327
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9161
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5663
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4302
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3828
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2999
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.