In PHP I could have this situation:
<?php
class Person {
public $firstName;
public $lastName;
function __construct($firstName, $lastName)
{
$this->firstName = $firstName;
$this->lastName = $lastName;
}
function __toString()
{
return "{$this->firstName} {$this->lastName}";
}
}
echo new Person("Adam", "Cameron"); // Adam Cameron
I could have sworn there was an equivalent in CFML, eg:
// Person.cfc
component {
function init(id, firstName, lastName){
this.id = id;
this.firstName = firstName;
this.lastName = lastName;
}
function toString(){
return "#this.firstName# #this.lastName#";
}
}
// test.cfm
writeOutput(new Person("Adam", "Cameron"));
I thought it was new to CF11 or CF2016.
But this dun't work. I know I can do customer serialisers, but that's not a good fit here.
I also know I can effect the same thing in various other ways, but that's not the question here. I am specifically asking about being able to implement a toString
method or some such to just be able to specify how to represent an object as a string.
Am I mis-remembering CFML, or am I doing something wrong?