Welcome Guest, Not a member yet? Register   Sign In
$this->email->send() returns nothing
#12

[eluser]TWP Marketing[/eluser]
Looking at the email library function send(), I agree it should return only true or false. I wonder if your server or php version is not converting that to numeric 1/0 or text '1'/'0'.

Conditional, check for exact boolean, numeric or text output types
Code:
if( $this->email->send() === null )
{
die('send null');
}
if( $this->email->send() === true )
{
die('send true');
}
if( $this->email->send() === false )
{
die('send false');
}
if( $this->email->send() === 1 )
{
die('send one');
}
if( $this->email->send() === 0 )
{
die('send zero');
}
if( $this->email->send() === '1' )
{
die('send string one');
}
if( $this->email->send() === '0' )
{
die('send string zero');
}


Messages In This Thread
$this->email->send() returns nothing - by El Forum - 09-10-2012, 12:34 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 12:44 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 12:45 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 12:48 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:19 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:28 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:29 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:29 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:31 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:34 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:36 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:37 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:38 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:40 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:56 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 03:02 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 03:30 PM



Theme © iAndrew 2016 - Forum software by © MyBB