<?php// 260 is the token value for the T_REQUIRE tokenecho token_name(260); // -> "T_REQUIRE" // a token constant maps to its own nameecho token_name(T_FUNCTION); // -> "T_FUNCTION"?>