PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Moderator: General Moderators
sfoley77
Forum Newbie
Posts: 15 Joined: Tue Jun 02, 2009 10:13 am
Post
by sfoley77 » Tue Jun 30, 2009 5:18 am
I need to write the equilvilant of this statement in php and ignore its case but I cant find a operator in php for it here is the java version:
Code: Select all
customer.getZzaux_contact_by_email().equalsIgnoreCase("Y"))
can anyone show me the way to do this
Thanks
Sean
BornForCode
Forum Contributor
Posts: 147 Joined: Mon Feb 11, 2008 1:56 am
Post
by BornForCode » Tue Jun 30, 2009 5:32 am
prometheuzz means:
Code: Select all
if(!strcasecmp('nici','Nici')) {
echo 'jackpot are equals';
}
else
{
echo 'Bleah';
}
Last edited by
Benjamin on Tue Jun 30, 2009 10:33 am, edited 1 time in total.
Reason: Changed code type from text to php.