<?php

rename_function('count', 'contar');

$var = array(
	"one",
	"two",
	"three"
	);

$number = contar($var);
echo $number;

?>