<?php

define("START", microtime(TRUE));

$mesAtual = intval(date("m"));

define("MIDDLE", microtime(TRUE));

$mesAtual = (int) date("m");

define("END", microtime(TRUE));

echo "intval: ", MIDDLE - START, PHP_EOL;
echo "type cast: ", END - MIDDLE, PHP_EOL;