Hi
Long time ago i see a condition with debug mode but i can’t find that ;/ Anyone could help me ?
if (debug mode is set)
{
// make this
}
else
{
//make that
}
Hi
Long time ago i see a condition with debug mode but i can’t find that ;/ Anyone could help me ?
if (debug mode is set)
{
// make this
}
else
{
//make that
}
if(YII_DEBUG) {
// make this
}
else
{
//make that
}
thanks xD