<?php
function addTwo($a)
{
	return "include {$a[0]}.php";
}


$str = '[INCLUDE]page1[/INCLUDE]';

$result = preg_replace_callback('/(page\d)/', 'addTwo', $str);

echo $result;