I am using LessPHP, and basically want to do the following:
@var = "new val"; if(isnull(@var)){ @var = "default"; }
I know that there are no isnull or if expressions. I also know that you can use parametric functions, but I want to work with @var in a global scope.
source share