I need some help regarding syntax. Can we put some comparisons on the values of these variables like
if ("$ru"=="$fu") {xlog("both are same")};
If this is not the way then what is the way to do so ??
-- View this message in context: http://sip-router.1086192.n5.nabble.com/Syntax-help-in-comparison-of-values-... Sent from the Users mailing list archive at Nabble.com.
Hello,
On 26/06/14 10:05, aawaise wrote:
I need some help regarding syntax. Can we put some comparisons on the values of these variables like
if ("$ru"=="$fu")
remove the double quotes, because they are considered static string in the form you used above. It should be:
if($ru==$fu)
because $fu and $ru are config variables and they should be used without double-quotes in expressions.
Cheers, Daniel
{xlog("both are same")};
If this is not the way then what is the way to do so ??
-- View this message in context: http://sip-router.1086192.n5.nabble.com/Syntax-help-in-comparison-of-values-... Sent from the Users mailing list archive at Nabble.com.
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users