I have function:
function abc( $name, $city = 'duhok', $age = 30 ){
echo $name.", ".$city.", ".$age;
}
abc( 'Dilovan', null, 26 ); // output: Dilovan, , 26
And I want to output will:Dilovan, duhok, 26
I want way to use this function without set second argument and the second argument write default value.
abc( 'Dilovan', [what i use here to write defualt value ?], 26 );