Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php namespace PHP_CodeSniffer\Tests\Core\Tokenizer; use PHP_CodeSniffer\Tests\Core\Abst..

Decoded Output download

<?php
 namespace PHP_CodeSniffer\Tests\Core\Tokenizer; use PHP_CodeSniffer\Tests\Core\AbstractMethodUnitTest; use PHP_CodeSniffer\Util\Tokens; class ContextSensitiveKeywordsTest extends AbstractMethodUnitTest { public function testStrings($testMarker) { $tokens = self::$phpcsFile->getTokens(); $token = $this->getTargetToken($testMarker, Tokens::$contextSensitiveKeywords + array(T_STRING, T_NULL, T_FALSE, T_TRUE, T_PARENT, T_SELF)); $this->assertSame(T_STRING, $tokens[$token]["code"]); $this->assertSame("T_STRING", $tokens[$token]["type"]); } public function dataStrings() { return array(array("/* testAbstract */"), array("/* testArray */"), array("/* testAs */"), array("/* testBreak */"), array("/* testCallable */"), array("/* testCase */"), array("/* testCatch */"), array("/* testClass */"), array("/* testClone */"), array("/* testConst */"), array("/* testContinue */"), array("/* testDeclare */"), array("/* testDefault */"), array("/* testDo */"), array("/* testEcho */"), array("/* testElse */"), array("/* testElseIf */"), array("/* testEmpty */"), array("/* testEndDeclare */"), array("/* testEndFor */"), array("/* testEndForeach */"), array("/* testEndIf */"), array("/* testEndSwitch */"), array("/* testEndWhile */"), array("/* testEnum */"), array("/* testEval */"), array("/* testExit */"), array("/* testExtends */"), array("/* testFinal */"), array("/* testFinally */"), array("/* testFn */"), array("/* testFor */"), array("/* testForeach */"), array("/* testFunction */"), array("/* testGlobal */"), array("/* testGoto */"), array("/* testIf */"), array("/* testImplements */"), array("/* testInclude */"), array("/* testIncludeOnce */"), array("/* testInstanceOf */"), array("/* testInsteadOf */"), array("/* testInterface */"), array("/* testIsset */"), array("/* testList */"), array("/* testMatch */"), array("/* testNamespace */"), array("/* testNew */"), array("/* testParent */"), array("/* testPrint */"), array("/* testPrivate */"), array("/* testProtected */"), array("/* testPublic */"), array("/* testReadonly */"), array("/* testRequire */"), array("/* testRequireOnce */"), array("/* testReturn */"), array("/* testSelf */"), array("/* testStatic */"), array("/* testSwitch */"), array("/* testThrows */"), array("/* testTrait */"), array("/* testTry */"), array("/* testUnset */"), array("/* testUse */"), array("/* testVar */"), array("/* testWhile */"), array("/* testYield */"), array("/* testYieldFrom */"), array("/* testAnd */"), array("/* testOr */"), array("/* testXor */"), array("/* testFalse */"), array("/* testTrue */"), array("/* testNull */"), array("/* testKeywordAfterNamespaceShouldBeString */"), array("/* testNamespaceNameIsString1 */"), array("/* testNamespaceNameIsString2 */"), array("/* testNamespaceNameIsString3 */"), array("/* testKeywordAfterFunctionShouldBeString */"), array("/* testKeywordAfterFunctionByRefShouldBeString */"), array("/* testKeywordSelfAfterFunctionByRefShouldBeString */"), array("/* testKeywordStaticAfterFunctionByRefShouldBeString */"), array("/* testKeywordParentAfterFunctionByRefShouldBeString */"), array("/* testKeywordFalseAfterFunctionByRefShouldBeString */"), array("/* testKeywordTrueAfterFunctionByRefShouldBeString */"), array("/* testKeywordNullAfterFunctionByRefShouldBeString */"), array("/* testKeywordAsFunctionCallNameShouldBeStringSelf */"), array("/* testKeywordAsFunctionCallNameShouldBeStringStatic */"), array("/* testKeywordAsMethodCallNameShouldBeStringStatic */"), array("/* testKeywordAsFunctionCallNameShouldBeStringParent */"), array("/* testKeywordAsFunctionCallNameShouldBeStringFalse */"), array("/* testKeywordAsFunctionCallNameShouldBeStringTrue */"), array("/* testKeywordAsFunctionCallNameShouldBeStringNull */"), array("/* testClassInstantiationFalseIsString */"), array("/* testClassInstantiationTrueIsString */"), array("/* testClassInstantiationNullIsString */")); } public function testKeywords($testMarker, $expectedTokenType) { $tokens = self::$phpcsFile->getTokens(); $token = $this->getTargetToken($testMarker, Tokens::$contextSensitiveKeywords + array(T_ANON_CLASS, T_MATCH_DEFAULT, T_PARENT, T_SELF, T_STRING, T_NULL, T_FALSE, T_TRUE)); $this->assertSame(constant($expectedTokenType), $tokens[$token]["code"]); $this->assertSame($expectedTokenType, $tokens[$token]["type"]); } public function dataKeywords() { return array(array("/* testNamespaceIsKeyword */", "T_NAMESPACE"), array("/* testAbstractIsKeyword */", "T_ABSTRACT"), array("/* testClassIsKeyword */", "T_CLASS"), array("/* testExtendsIsKeyword */", "T_EXTENDS"), array("/* testImplementsIsKeyword */", "T_IMPLEMENTS"), array("/* testUseIsKeyword */", "T_USE"), array("/* testInsteadOfIsKeyword */", "T_INSTEADOF"), array("/* testAsIsKeyword */", "T_AS"), array("/* testConstIsKeyword */", "T_CONST"), array("/* testPrivateIsKeyword */", "T_PRIVATE"), array("/* testProtectedIsKeyword */", "T_PROTECTED"), array("/* testPublicIsKeyword */", "T_PUBLIC"), array("/* testVarIsKeyword */", "T_VAR"), array("/* testStaticIsKeyword */", "T_STATIC"), array("/* testReadonlyIsKeyword */", "T_READONLY"), array("/* testFinalIsKeyword */", "T_FINAL"), array("/* testFunctionIsKeyword */", "T_FUNCTION"), array("/* testCallableIsKeyword */", "T_CALLABLE"), array("/* testSelfIsKeyword */", "T_SELF"), array("/* testParentIsKeyword */", "T_PARENT"), array("/* testReturnIsKeyword */", "T_RETURN"), array("/* testInterfaceIsKeyword */", "T_INTERFACE"), array("/* testTraitIsKeyword */", "T_TRAIT"), array("/* testEnumIsKeyword */", "T_ENUM"), array("/* testNewIsKeyword */", "T_NEW"), array("/* testInstanceOfIsKeyword */", "T_INSTANCEOF"), array("/* testCloneIsKeyword */", "T_CLONE"), array("/* testIfIsKeyword */", "T_IF"), array("/* testEmptyIsKeyword */", "T_EMPTY"), array("/* testElseIfIsKeyword */", "T_ELSEIF"), array("/* testElseIsKeyword */", "T_ELSE"), array("/* testEndIfIsKeyword */", "T_ENDIF"), array("/* testForIsKeyword */", "T_FOR"), array("/* testEndForIsKeyword */", "T_ENDFOR"), array("/* testForeachIsKeyword */", "T_FOREACH"), array("/* testEndForeachIsKeyword */", "T_ENDFOREACH"), array("/* testSwitchIsKeyword */", "T_SWITCH"), array("/* testCaseIsKeyword */", "T_CASE"), array("/* testDefaultIsKeyword */", "T_DEFAULT"), array("/* testEndSwitchIsKeyword */", "T_ENDSWITCH"), array("/* testBreakIsKeyword */", "T_BREAK"), array("/* testContinueIsKeyword */", "T_CONTINUE"), array("/* testDoIsKeyword */", "T_DO"), array("/* testWhileIsKeyword */", "T_WHILE"), array("/* testEndWhileIsKeyword */", "T_ENDWHILE"), array("/* testTryIsKeyword */", "T_TRY"), array("/* testThrowIsKeyword */", "T_THROW"), array("/* testCatchIsKeyword */", "T_CATCH"), array("/* testFinallyIsKeyword */", "T_FINALLY"), array("/* testGlobalIsKeyword */", "T_GLOBAL"), array("/* testEchoIsKeyword */", "T_ECHO"), array("/* testPrintIsKeyword */", "T_PRINT"), array("/* testDieIsKeyword */", "T_EXIT"), array("/* testEvalIsKeyword */", "T_EVAL"), array("/* testExitIsKeyword */", "T_EXIT"), array("/* testIssetIsKeyword */", "T_ISSET"), array("/* testUnsetIsKeyword */", "T_UNSET"), array("/* testIncludeIsKeyword */", "T_INCLUDE"), array("/* testIncludeOnceIsKeyword */", "T_INCLUDE_ONCE"), array("/* testRequireIsKeyword */", "T_REQUIRE"), array("/* testRequireOnceIsKeyword */", "T_REQUIRE_ONCE"), array("/* testListIsKeyword */", "T_LIST"), array("/* testGotoIsKeyword */", "T_GOTO"), array("/* testMatchIsKeyword */", "T_MATCH"), array("/* testMatchDefaultIsKeyword */", "T_MATCH_DEFAULT"), array("/* testFnIsKeyword */", "T_FN"), array("/* testYieldIsKeyword */", "T_YIELD"), array("/* testYieldFromIsKeyword */", "T_YIELD_FROM"), array("/* testDeclareIsKeyword */", "T_DECLARE"), array("/* testEndDeclareIsKeyword */", "T_ENDDECLARE"), array("/* testAndIsKeyword */", "T_LOGICAL_AND"), array("/* testOrIsKeyword */", "T_LOGICAL_OR"), array("/* testXorIsKeyword */", "T_LOGICAL_XOR"), array("/* testAnonymousClassIsKeyword */", "T_ANON_CLASS"), array("/* testExtendsInAnonymousClassIsKeyword */", "T_EXTENDS"), array("/* testImplementsInAnonymousClassIsKeyword */", "T_IMPLEMENTS"), array("/* testClassInstantiationParentIsKeyword */", "T_PARENT"), array("/* testClassInstantiationSelfIsKeyword */", "T_SELF"), array("/* testClassInstantiationStaticIsKeyword */", "T_STATIC"), array("/* testNamespaceInNameIsKeyword */", "T_NAMESPACE"), array("/* testStaticIsKeywordBeforeClosure */", "T_STATIC"), array("/* testStaticIsKeywordWhenParamType */", "T_STATIC"), array("/* testStaticIsKeywordBeforeArrow */", "T_STATIC"), array("/* testStaticIsKeywordWhenReturnType */", "T_STATIC"), array("/* testFalseIsKeywordAsParamType */", "T_FALSE"), array("/* testTrueIsKeywordAsParamType */", "T_TRUE"), array("/* testNullIsKeywordAsParamType */", "T_NULL"), array("/* testFalseIsKeywordAsReturnType */", "T_FALSE"), array("/* testTrueIsKeywordAsReturnType */", "T_TRUE"), array("/* testNullIsKeywordAsReturnType */", "T_NULL"), array("/* testFalseIsKeywordInComparison */", "T_FALSE"), array("/* testTrueIsKeywordInComparison */", "T_TRUE"), array("/* testNullIsKeywordInComparison */", "T_NULL")); } } ?>

Did this file decode correctly?

Original Code

<?php
 namespace PHP_CodeSniffer\Tests\Core\Tokenizer; use PHP_CodeSniffer\Tests\Core\AbstractMethodUnitTest; use PHP_CodeSniffer\Util\Tokens; class ContextSensitiveKeywordsTest extends AbstractMethodUnitTest { public function testStrings($testMarker) { $tokens = self::$phpcsFile->getTokens(); $token = $this->getTargetToken($testMarker, Tokens::$contextSensitiveKeywords + array(T_STRING, T_NULL, T_FALSE, T_TRUE, T_PARENT, T_SELF)); $this->assertSame(T_STRING, $tokens[$token]["\x63\x6f\x64\x65"]); $this->assertSame("\x54\137\123\124\122\x49\x4e\107", $tokens[$token]["\164\171\160\145"]); } public function dataStrings() { return array(array("\x2f\x2a\x20\164\x65\x73\164\x41\142\x73\x74\x72\141\143\x74\x20\52\57"), array("\57\x2a\x20\164\145\163\164\x41\162\x72\x61\171\40\x2a\x2f"), array("\x2f\x2a\x20\164\x65\x73\164\x41\x73\40\x2a\57"), array("\x2f\x2a\x20\x74\145\163\x74\x42\x72\145\x61\x6b\x20\x2a\57"), array("\57\x2a\40\x74\x65\163\164\x43\141\154\x6c\141\142\x6c\145\x20\52\57"), array("\x2f\x2a\40\x74\x65\163\x74\103\x61\x73\x65\40\x2a\57"), array("\57\x2a\x20\x74\x65\x73\164\x43\141\164\x63\150\x20\52\x2f"), array("\57\x2a\40\x74\145\163\x74\103\x6c\141\163\x73\40\52\x2f"), array("\57\x2a\x20\x74\145\x73\x74\x43\154\157\156\145\x20\x2a\57"), array("\57\x2a\40\164\145\x73\164\x43\x6f\x6e\163\164\40\52\x2f"), array("\x2f\52\40\164\x65\163\x74\103\x6f\156\x74\x69\x6e\x75\145\x20\52\57"), array("\57\x2a\40\x74\x65\163\164\x44\x65\143\x6c\141\x72\145\x20\x2a\x2f"), array("\x2f\x2a\x20\x74\145\163\x74\104\145\x66\141\165\x6c\164\40\52\57"), array("\x2f\x2a\40\164\x65\x73\x74\x44\157\x20\x2a\x2f"), array("\57\x2a\x20\x74\145\163\164\x45\x63\x68\157\x20\x2a\57"), array("\x2f\52\40\164\145\x73\x74\105\x6c\163\145\x20\x2a\x2f"), array("\x2f\52\x20\x74\x65\x73\164\105\154\x73\145\111\146\x20\52\57"), array("\57\x2a\x20\164\145\163\164\105\155\160\x74\x79\40\x2a\57"), array("\x2f\52\x20\x74\145\163\164\x45\156\144\x44\x65\143\154\x61\162\x65\40\x2a\57"), array("\x2f\52\x20\x74\x65\x73\164\105\156\x64\x46\x6f\162\40\x2a\57"), array("\x2f\x2a\x20\164\145\163\x74\x45\156\x64\x46\157\162\x65\141\x63\150\40\52\57"), array("\57\52\x20\164\x65\163\164\x45\156\x64\111\146\x20\x2a\57"), array("\x2f\52\x20\164\x65\163\x74\105\x6e\x64\x53\167\x69\x74\143\x68\x20\x2a\57"), array("\x2f\52\40\164\x65\163\164\x45\x6e\x64\x57\150\x69\x6c\x65\40\52\x2f"), array("\x2f\x2a\40\164\x65\163\164\x45\x6e\165\x6d\40\52\57"), array("\x2f\52\x20\x74\x65\x73\x74\105\166\x61\154\x20\52\x2f"), array("\57\52\40\164\x65\x73\164\x45\170\151\x74\40\x2a\x2f"), array("\x2f\52\x20\x74\145\x73\164\x45\170\164\145\x6e\x64\x73\x20\x2a\x2f"), array("\57\52\40\164\x65\x73\x74\x46\x69\x6e\141\154\x20\52\57"), array("\57\x2a\x20\x74\145\x73\x74\106\x69\x6e\x61\x6c\154\x79\40\x2a\x2f"), array("\57\x2a\x20\164\x65\x73\x74\106\156\x20\52\57"), array("\57\52\40\x74\145\163\x74\x46\x6f\162\40\x2a\57"), array("\57\x2a\40\x74\145\x73\164\106\x6f\162\x65\141\x63\150\40\52\x2f"), array("\x2f\52\x20\164\x65\x73\x74\106\x75\x6e\x63\x74\151\x6f\x6e\x20\x2a\x2f"), array("\x2f\x2a\40\x74\145\163\164\x47\154\157\x62\141\x6c\40\x2a\x2f"), array("\x2f\52\x20\x74\145\x73\164\107\x6f\164\x6f\40\52\57"), array("\x2f\52\x20\x74\x65\163\x74\111\146\x20\52\57"), array("\x2f\52\40\164\145\x73\164\111\x6d\160\154\x65\155\145\x6e\x74\163\x20\52\57"), array("\x2f\x2a\x20\x74\x65\x73\x74\111\x6e\143\154\x75\x64\145\40\x2a\57"), array("\57\x2a\40\x74\145\x73\164\111\156\x63\154\165\x64\145\x4f\156\143\145\x20\52\x2f"), array("\57\x2a\40\164\x65\x73\x74\x49\x6e\x73\x74\141\156\x63\x65\x4f\146\40\52\x2f"), array("\x2f\52\x20\164\x65\x73\164\x49\156\x73\x74\145\141\144\117\146\40\x2a\57"), array("\57\52\x20\164\145\x73\164\111\156\164\x65\x72\146\141\x63\x65\40\52\57"), array("\x2f\x2a\x20\x74\x65\163\x74\x49\163\x73\x65\x74\x20\x2a\57"), array("\57\52\40\x74\x65\163\x74\x4c\x69\163\164\40\x2a\57"), array("\x2f\x2a\40\x74\x65\163\x74\x4d\x61\x74\143\150\40\52\57"), array("\57\x2a\40\x74\x65\x73\x74\116\x61\x6d\x65\163\x70\141\143\x65\x20\52\57"), array("\x2f\52\40\x74\x65\163\164\x4e\x65\x77\40\x2a\x2f"), array("\57\52\40\164\x65\x73\x74\x50\141\x72\145\x6e\164\x20\52\x2f"), array("\57\x2a\x20\164\145\163\164\x50\162\151\156\x74\x20\52\57"), array("\57\52\40\164\x65\x73\x74\120\x72\151\x76\x61\164\145\x20\x2a\x2f"), array("\x2f\52\40\x74\x65\x73\x74\x50\x72\x6f\x74\x65\x63\164\145\144\40\x2a\57"), array("\x2f\52\x20\x74\x65\163\164\x50\x75\x62\x6c\x69\x63\x20\52\x2f"), array("\57\x2a\x20\x74\x65\163\x74\122\x65\141\x64\157\156\x6c\171\40\52\x2f"), array("\x2f\52\x20\164\145\x73\164\122\x65\161\165\151\x72\x65\40\x2a\57"), array("\x2f\52\x20\164\145\163\x74\122\x65\161\165\151\x72\145\117\x6e\x63\145\x20\x2a\x2f"), array("\x2f\x2a\x20\164\x65\163\164\122\x65\164\x75\162\x6e\40\x2a\x2f"), array("\x2f\x2a\x20\164\145\163\164\123\145\154\146\x20\52\57"), array("\57\x2a\x20\164\x65\x73\164\x53\164\x61\164\151\x63\40\52\57"), array("\57\52\x20\164\145\x73\x74\x53\x77\151\164\143\x68\40\52\x2f"), array("\57\x2a\x20\164\145\163\x74\x54\x68\x72\157\167\x73\x20\x2a\x2f"), array("\x2f\x2a\40\164\x65\163\164\x54\162\x61\151\x74\x20\x2a\57"), array("\57\52\x20\164\x65\x73\x74\x54\162\x79\40\52\57"), array("\x2f\x2a\x20\164\145\163\164\125\x6e\x73\x65\x74\40\52\x2f"), array("\57\x2a\x20\x74\145\163\164\x55\163\x65\x20\52\x2f"), array("\57\x2a\x20\x74\145\163\164\126\141\x72\x20\52\57"), array("\x2f\52\40\x74\x65\x73\164\127\150\x69\x6c\145\40\52\57"), array("\57\52\x20\164\x65\163\164\x59\151\x65\154\144\40\52\x2f"), array("\x2f\x2a\40\x74\145\163\164\131\x69\145\154\144\106\x72\x6f\155\40\x2a\57"), array("\57\52\x20\x74\145\x73\164\x41\x6e\144\40\x2a\x2f"), array("\57\52\40\x74\x65\163\164\117\x72\x20\52\x2f"), array("\57\52\40\164\x65\x73\164\x58\x6f\x72\40\x2a\57"), array("\x2f\x2a\40\x74\x65\163\164\x46\x61\x6c\163\x65\x20\x2a\57"), array("\x2f\52\x20\164\x65\x73\x74\124\x72\165\145\x20\52\57"), array("\57\52\x20\x74\145\163\164\x4e\165\154\x6c\x20\x2a\57"), array("\x2f\x2a\x20\x74\145\163\x74\x4b\145\x79\x77\x6f\x72\x64\x41\146\164\x65\x72\x4e\x61\155\x65\x73\160\141\143\x65\x53\x68\x6f\165\154\144\102\145\x53\x74\x72\151\156\x67\40\x2a\57"), array("\57\x2a\x20\164\x65\x73\x74\x4e\141\x6d\x65\163\160\141\x63\145\116\141\x6d\145\111\163\123\164\162\x69\156\x67\61\40\x2a\x2f"), array("\57\x2a\x20\x74\145\x73\164\x4e\x61\x6d\145\163\x70\141\143\x65\116\x61\x6d\145\x49\163\x53\x74\162\151\x6e\x67\x32\x20\52\x2f"), array("\57\x2a\40\164\x65\x73\164\x4e\141\x6d\145\x73\x70\141\143\145\116\x61\155\x65\x49\163\x53\x74\162\151\x6e\x67\x33\x20\52\57"), array("\x2f\x2a\40\x74\145\163\x74\x4b\x65\171\167\157\162\144\101\x66\x74\x65\x72\106\x75\156\143\x74\151\157\156\x53\150\x6f\165\x6c\144\102\x65\x53\x74\x72\151\156\x67\40\52\x2f"), array("\57\52\x20\x74\145\x73\x74\x4b\145\x79\x77\x6f\x72\144\x41\146\164\x65\x72\106\165\156\x63\164\151\x6f\x6e\102\x79\x52\145\x66\x53\150\x6f\x75\154\144\102\145\123\164\x72\151\x6e\x67\40\52\x2f"), array("\57\x2a\40\x74\x65\163\164\x4b\145\x79\x77\x6f\162\x64\x53\145\154\146\101\x66\164\145\x72\x46\x75\x6e\143\164\151\x6f\156\x42\x79\122\145\146\123\x68\x6f\x75\154\x64\102\145\123\x74\162\x69\156\x67\x20\x2a\x2f"), array("\x2f\52\40\164\145\163\164\x4b\x65\171\x77\157\x72\x64\123\164\141\x74\x69\143\x41\x66\164\x65\162\x46\165\x6e\x63\x74\151\157\x6e\102\171\122\x65\x66\123\150\157\165\x6c\144\x42\x65\123\164\162\x69\x6e\147\40\x2a\57"), array("\57\52\40\x74\145\163\164\113\x65\x79\x77\x6f\162\144\120\x61\162\x65\156\x74\101\146\164\145\x72\x46\165\x6e\x63\x74\151\x6f\x6e\x42\x79\122\x65\x66\x53\x68\x6f\165\x6c\144\x42\x65\x53\164\x72\151\156\147\x20\x2a\x2f"), array("\57\x2a\40\164\145\x73\164\x4b\x65\171\167\157\x72\x64\x46\141\154\163\145\x41\x66\164\x65\162\106\x75\x6e\143\x74\151\157\156\102\x79\x52\145\146\123\150\x6f\x75\x6c\144\x42\x65\123\x74\162\x69\x6e\x67\40\52\57"), array("\x2f\52\x20\x74\x65\163\x74\x4b\145\171\x77\157\162\x64\x54\162\x75\145\x41\146\164\145\162\x46\165\x6e\143\x74\151\157\156\102\171\122\145\x66\123\150\x6f\165\154\x64\102\x65\123\164\x72\151\156\147\40\52\x2f"), array("\x2f\x2a\40\164\145\x73\164\x4b\145\171\167\157\x72\144\116\165\154\x6c\101\x66\164\145\162\106\x75\156\x63\x74\x69\157\156\102\x79\122\145\x66\x53\x68\157\165\154\144\x42\x65\x53\x74\162\151\156\147\x20\52\57"), array("\57\52\x20\x74\145\x73\164\113\145\171\167\157\x72\144\x41\163\x46\165\x6e\x63\x74\151\x6f\156\103\141\x6c\154\116\141\x6d\x65\x53\x68\x6f\165\154\144\102\145\123\x74\162\x69\x6e\147\x53\145\154\x66\x20\52\x2f"), array("\x2f\52\40\164\x65\163\164\113\145\171\167\x6f\x72\x64\x41\163\106\165\x6e\143\x74\x69\x6f\x6e\103\141\154\154\x4e\x61\155\145\123\x68\x6f\165\154\x64\102\x65\123\164\x72\151\x6e\147\123\164\141\164\x69\x63\x20\x2a\x2f"), array("\57\x2a\40\x74\x65\163\x74\x4b\145\171\167\x6f\x72\144\x41\163\x4d\x65\x74\150\157\x64\103\141\154\x6c\116\141\x6d\145\123\x68\157\x75\x6c\x64\102\145\x53\164\x72\x69\x6e\x67\123\164\x61\x74\x69\x63\x20\52\57"), array("\x2f\x2a\x20\x74\x65\x73\164\x4b\x65\x79\x77\x6f\162\x64\x41\163\x46\x75\156\143\164\151\157\156\103\141\154\x6c\x4e\x61\x6d\145\123\x68\157\x75\x6c\144\102\145\123\x74\162\151\156\147\120\x61\x72\x65\156\x74\40\52\57"), array("\57\x2a\40\x74\x65\163\x74\113\145\171\x77\x6f\x72\x64\x41\163\x46\x75\156\143\x74\151\157\156\103\141\154\x6c\116\141\x6d\x65\123\x68\x6f\x75\154\x64\102\x65\123\x74\x72\x69\156\147\x46\x61\x6c\163\x65\x20\x2a\57"), array("\57\x2a\x20\164\x65\163\164\113\x65\171\167\x6f\x72\144\101\163\x46\165\x6e\x63\x74\151\x6f\x6e\x43\141\x6c\x6c\116\x61\155\145\x53\x68\x6f\x75\x6c\x64\102\x65\123\x74\x72\x69\x6e\x67\x54\162\165\145\x20\52\x2f"), array("\57\52\x20\164\145\163\x74\x4b\145\x79\167\x6f\162\x64\101\163\106\165\156\143\164\151\157\x6e\x43\x61\x6c\x6c\116\141\155\x65\123\150\x6f\165\154\144\102\145\x53\164\162\x69\156\147\116\x75\x6c\x6c\40\x2a\57"), array("\x2f\x2a\x20\x74\x65\163\x74\103\x6c\141\163\x73\x49\x6e\163\x74\x61\x6e\164\151\141\x74\151\157\x6e\106\x61\x6c\x73\x65\111\x73\x53\164\x72\151\156\147\x20\x2a\x2f"), array("\x2f\x2a\x20\164\x65\x73\x74\103\154\x61\163\163\x49\x6e\163\x74\x61\x6e\164\151\141\164\151\x6f\x6e\x54\162\165\x65\x49\163\123\164\x72\x69\156\x67\x20\x2a\x2f"), array("\x2f\52\40\x74\x65\x73\x74\x43\154\141\x73\163\x49\156\163\x74\141\156\x74\151\141\x74\x69\x6f\156\x4e\x75\x6c\x6c\111\163\x53\164\162\151\156\x67\x20\52\57")); } public function testKeywords($testMarker, $expectedTokenType) { $tokens = self::$phpcsFile->getTokens(); $token = $this->getTargetToken($testMarker, Tokens::$contextSensitiveKeywords + array(T_ANON_CLASS, T_MATCH_DEFAULT, T_PARENT, T_SELF, T_STRING, T_NULL, T_FALSE, T_TRUE)); $this->assertSame(constant($expectedTokenType), $tokens[$token]["\x63\157\x64\x65"]); $this->assertSame($expectedTokenType, $tokens[$token]["\x74\171\x70\145"]); } public function dataKeywords() { return array(array("\57\52\x20\x74\145\163\x74\116\141\155\145\163\x70\x61\x63\x65\x49\163\x4b\145\171\x77\x6f\162\x64\x20\x2a\57", "\x54\x5f\116\x41\115\105\x53\x50\x41\103\105"), array("\x2f\52\40\164\x65\x73\x74\x41\142\163\164\x72\x61\x63\164\x49\163\113\145\x79\167\157\x72\x64\40\x2a\57", "\124\x5f\x41\x42\x53\x54\122\101\x43\124"), array("\57\52\x20\164\145\x73\x74\x43\154\x61\x73\163\111\x73\x4b\x65\x79\167\157\162\144\x20\x2a\57", "\124\x5f\103\114\101\123\x53"), array("\57\x2a\40\164\x65\163\164\105\170\x74\145\156\x64\163\111\163\x4b\145\171\167\157\162\144\40\x2a\57", "\x54\x5f\105\130\124\105\116\104\x53"), array("\x2f\52\40\164\x65\163\164\111\x6d\160\x6c\145\x6d\x65\x6e\x74\163\111\x73\113\x65\171\x77\157\x72\x64\40\52\57", "\124\x5f\x49\115\120\114\x45\x4d\105\x4e\x54\123"), array("\x2f\52\40\164\145\x73\164\125\x73\x65\111\163\113\145\x79\x77\157\162\144\x20\52\57", "\124\x5f\125\123\x45"), array("\x2f\52\40\164\x65\x73\164\111\x6e\163\x74\145\141\144\117\x66\111\x73\x4b\x65\171\167\x6f\162\144\40\52\x2f", "\x54\x5f\x49\116\x53\124\x45\101\104\x4f\106"), array("\x2f\52\40\164\145\x73\x74\x41\x73\x49\x73\113\x65\171\167\x6f\x72\144\40\52\57", "\x54\x5f\x41\x53"), array("\57\52\x20\164\145\x73\164\103\x6f\156\163\164\x49\x73\113\145\x79\167\157\162\x64\40\x2a\57", "\x54\137\103\117\116\123\x54"), array("\x2f\52\40\164\145\x73\164\120\x72\x69\x76\141\x74\x65\111\x73\x4b\x65\171\167\x6f\x72\144\40\52\57", "\124\137\120\x52\x49\x56\x41\x54\105"), array("\57\52\x20\x74\x65\163\164\x50\x72\x6f\164\145\x63\x74\145\x64\x49\x73\113\x65\x79\167\157\162\144\40\52\x2f", "\124\137\120\122\x4f\x54\x45\103\x54\105\104"), array("\57\x2a\40\x74\x65\x73\x74\120\165\142\x6c\151\x63\111\163\x4b\x65\171\167\157\162\144\x20\52\x2f", "\x54\137\x50\x55\x42\x4c\x49\103"), array("\x2f\x2a\x20\164\145\x73\164\x56\141\x72\111\x73\x4b\x65\171\x77\x6f\x72\144\40\x2a\x2f", "\124\137\126\101\x52"), array("\x2f\x2a\x20\x74\x65\x73\164\x53\x74\141\164\x69\143\x49\163\x4b\145\x79\167\x6f\x72\144\x20\52\57", "\124\x5f\123\124\101\124\x49\103"), array("\x2f\x2a\x20\x74\x65\x73\164\122\145\x61\x64\157\x6e\154\x79\111\x73\113\145\171\x77\x6f\x72\x64\40\x2a\x2f", "\124\137\122\105\101\x44\x4f\x4e\x4c\131"), array("\57\x2a\x20\164\145\163\164\106\x69\x6e\x61\154\x49\x73\x4b\145\171\167\x6f\x72\144\x20\x2a\57", "\124\x5f\x46\x49\116\x41\114"), array("\x2f\x2a\40\x74\145\x73\164\x46\x75\156\143\x74\151\157\x6e\111\163\113\145\171\x77\x6f\162\x64\x20\x2a\x2f", "\124\x5f\x46\125\x4e\x43\x54\111\117\116"), array("\x2f\52\x20\x74\145\163\x74\x43\x61\154\x6c\x61\142\x6c\x65\x49\163\113\145\x79\167\x6f\162\144\40\x2a\57", "\x54\x5f\x43\101\x4c\x4c\101\102\x4c\105"), array("\57\52\x20\164\145\163\164\x53\x65\x6c\146\x49\x73\113\x65\x79\x77\157\162\x64\40\x2a\57", "\x54\x5f\x53\x45\114\106"), array("\x2f\52\x20\x74\145\163\164\x50\x61\162\x65\156\x74\111\x73\113\x65\x79\167\157\x72\144\40\x2a\x2f", "\124\x5f\120\101\122\105\x4e\x54"), array("\x2f\52\40\x74\x65\163\164\122\x65\164\x75\162\x6e\x49\x73\x4b\x65\171\167\x6f\162\144\40\52\x2f", "\x54\137\x52\x45\x54\125\122\116"), array("\57\x2a\x20\164\x65\x73\x74\111\x6e\164\x65\162\x66\x61\x63\x65\x49\x73\x4b\145\x79\x77\x6f\x72\144\x20\52\x2f", "\x54\137\x49\116\124\x45\x52\x46\101\103\x45"), array("\57\x2a\x20\164\145\x73\x74\x54\x72\141\x69\164\111\163\113\x65\171\167\157\x72\x64\40\52\57", "\x54\137\124\122\101\111\x54"), array("\x2f\x2a\40\x74\145\163\x74\105\156\x75\x6d\111\163\113\x65\x79\x77\157\x72\x64\x20\x2a\x2f", "\124\x5f\x45\x4e\x55\115"), array("\57\x2a\x20\x74\145\x73\x74\x4e\145\167\x49\x73\x4b\x65\x79\x77\157\162\x64\40\x2a\57", "\124\137\x4e\x45\127"), array("\57\x2a\x20\164\145\x73\x74\111\156\x73\164\x61\156\x63\x65\117\x66\x49\163\x4b\x65\171\167\x6f\x72\144\x20\x2a\57", "\124\x5f\111\116\123\124\101\116\x43\x45\117\106"), array("\57\52\40\164\145\x73\164\x43\x6c\x6f\156\145\x49\163\113\145\171\x77\x6f\x72\144\40\52\x2f", "\x54\137\103\114\117\x4e\105"), array("\57\52\x20\x74\145\163\x74\111\x66\x49\163\113\145\x79\x77\x6f\162\144\40\x2a\x2f", "\124\137\x49\x46"), array("\x2f\x2a\x20\164\145\x73\x74\105\155\x70\x74\x79\x49\x73\x4b\x65\x79\167\x6f\x72\144\40\52\x2f", "\124\137\x45\115\120\124\131"), array("\57\x2a\40\164\x65\163\x74\x45\x6c\x73\145\111\146\111\x73\x4b\145\171\x77\x6f\162\144\40\52\57", "\124\x5f\x45\114\x53\105\111\106"), array("\x2f\52\40\164\145\163\164\105\154\163\x65\111\163\113\x65\171\167\157\162\144\x20\x2a\x2f", "\124\137\105\114\123\105"), array("\57\x2a\x20\164\145\x73\x74\x45\x6e\144\x49\x66\x49\163\x4b\x65\171\167\x6f\162\144\40\x2a\x2f", "\x54\137\x45\116\x44\x49\x46"), array("\x2f\52\40\x74\x65\163\164\106\x6f\x72\111\x73\113\x65\x79\x77\x6f\162\144\40\52\x2f", "\x54\137\x46\117\122"), array("\57\52\x20\x74\x65\163\x74\105\156\144\106\157\162\x49\163\x4b\145\x79\167\x6f\162\144\40\52\x2f", "\124\137\x45\116\x44\106\117\122"), array("\57\52\40\164\145\x73\x74\106\157\x72\145\141\x63\150\x49\x73\x4b\x65\171\167\x6f\162\144\x20\52\x2f", "\x54\x5f\106\x4f\122\x45\x41\103\x48"), array("\57\x2a\40\164\x65\163\164\x45\156\144\106\x6f\x72\145\x61\x63\x68\x49\163\x4b\x65\x79\x77\157\162\x64\x20\x2a\57", "\124\137\105\116\104\106\117\x52\105\101\x43\x48"), array("\57\x2a\40\164\x65\x73\x74\123\x77\151\164\x63\150\x49\x73\113\x65\x79\167\x6f\x72\144\40\x2a\57", "\124\x5f\x53\x57\x49\124\x43\x48"), array("\57\x2a\40\164\145\x73\164\x43\x61\x73\145\x49\163\x4b\145\x79\167\x6f\162\144\40\52\x2f", "\124\137\x43\x41\123\105"), array("\57\x2a\x20\164\x65\x73\x74\104\x65\x66\141\165\x6c\x74\x49\x73\113\145\x79\167\157\162\144\x20\x2a\57", "\x54\137\x44\105\106\101\125\114\x54"), array("\x2f\x2a\x20\x74\145\x73\164\105\x6e\144\123\167\x69\164\x63\150\x49\163\113\145\x79\x77\x6f\x72\x64\x20\x2a\57", "\x54\x5f\105\116\104\123\x57\111\124\x43\110"), array("\57\x2a\40\164\145\163\164\x42\x72\x65\141\x6b\111\x73\x4b\145\171\167\x6f\x72\x64\40\x2a\57", "\124\137\x42\122\105\x41\113"), array("\x2f\x2a\40\x74\145\163\164\x43\157\156\164\151\156\x75\x65\x49\163\x4b\145\171\x77\157\x72\x64\40\52\x2f", "\x54\x5f\x43\117\x4e\x54\111\x4e\125\x45"), array("\57\x2a\40\x74\x65\x73\x74\x44\157\x49\163\113\145\x79\x77\x6f\x72\144\40\x2a\x2f", "\124\x5f\104\x4f"), array("\57\52\x20\164\145\x73\x74\x57\150\151\x6c\x65\111\163\x4b\x65\171\167\x6f\x72\144\40\x2a\x2f", "\124\137\x57\110\x49\x4c\x45"), array("\57\x2a\x20\x74\145\x73\164\105\x6e\x64\127\x68\151\154\x65\111\163\x4b\x65\x79\x77\157\x72\x64\40\52\x2f", "\124\x5f\x45\116\104\x57\110\x49\x4c\x45"), array("\57\x2a\40\164\145\163\164\x54\x72\171\x49\x73\x4b\x65\x79\x77\157\162\144\40\x2a\x2f", "\124\x5f\124\122\x59"), array("\57\x2a\40\164\145\163\x74\x54\150\162\157\x77\x49\163\113\145\x79\x77\x6f\162\x64\x20\x2a\x2f", "\124\x5f\x54\110\122\117\x57"), array("\57\52\40\x74\x65\x73\164\103\x61\164\143\150\x49\163\113\145\171\167\x6f\x72\144\40\52\57", "\x54\x5f\103\x41\x54\x43\x48"), array("\57\x2a\x20\x74\145\x73\164\106\x69\156\141\154\x6c\171\x49\163\x4b\x65\171\167\157\x72\144\40\x2a\57", "\x54\137\x46\111\116\x41\x4c\x4c\x59"), array("\x2f\52\40\x74\x65\163\x74\x47\154\x6f\142\x61\x6c\x49\163\x4b\145\171\167\157\162\x64\x20\x2a\57", "\x54\x5f\x47\x4c\x4f\x42\x41\114"), array("\57\x2a\40\164\x65\x73\164\x45\143\150\157\111\x73\x4b\145\171\x77\157\162\x64\40\x2a\x2f", "\x54\x5f\x45\x43\x48\x4f"), array("\57\x2a\40\164\x65\x73\164\x50\162\151\156\164\x49\x73\113\145\x79\x77\x6f\x72\x64\40\52\57", "\124\x5f\x50\122\111\x4e\124"), array("\57\x2a\40\164\x65\x73\164\x44\151\145\x49\x73\113\x65\171\x77\x6f\x72\x64\x20\x2a\57", "\x54\137\x45\x58\x49\124"), array("\57\52\x20\164\145\163\164\105\166\x61\x6c\x49\163\x4b\145\x79\167\x6f\162\144\x20\x2a\x2f", "\124\137\x45\x56\x41\114"), array("\x2f\x2a\x20\164\145\x73\x74\105\x78\151\164\111\163\113\x65\x79\x77\x6f\x72\x64\40\52\x2f", "\x54\137\105\130\x49\x54"), array("\57\52\x20\164\145\x73\164\x49\x73\163\x65\x74\x49\x73\x4b\x65\x79\167\157\162\x64\x20\52\x2f", "\x54\x5f\111\123\x53\105\124"), array("\x2f\52\40\x74\x65\x73\x74\125\156\163\x65\164\111\x73\x4b\x65\x79\167\157\162\x64\40\52\x2f", "\x54\x5f\125\116\x53\x45\124"), array("\57\52\x20\x74\x65\163\x74\x49\x6e\143\154\165\144\145\x49\x73\x4b\145\x79\x77\x6f\x72\144\40\52\x2f", "\x54\x5f\111\116\103\x4c\125\104\105"), array("\x2f\52\x20\164\x65\x73\x74\111\156\143\154\x75\144\x65\117\156\143\x65\111\x73\x4b\x65\171\x77\x6f\162\x64\x20\52\57", "\124\x5f\111\116\103\114\125\x44\105\x5f\117\116\103\105"), array("\x2f\52\x20\164\x65\x73\x74\x52\145\161\x75\x69\x72\x65\111\x73\x4b\x65\171\x77\x6f\162\144\40\52\x2f", "\x54\x5f\122\x45\x51\x55\x49\x52\105"), array("\57\x2a\x20\164\145\163\x74\x52\x65\x71\165\151\x72\x65\117\156\x63\x65\x49\163\x4b\145\171\x77\157\x72\x64\x20\x2a\x2f", "\x54\x5f\122\105\121\x55\x49\x52\x45\137\x4f\116\103\105"), array("\x2f\x2a\x20\164\145\x73\164\114\151\x73\x74\x49\x73\113\145\171\167\157\x72\x64\x20\52\x2f", "\x54\x5f\114\x49\123\124"), array("\x2f\x2a\40\164\145\163\x74\107\x6f\164\x6f\x49\163\x4b\145\171\167\x6f\x72\144\40\x2a\57", "\x54\x5f\107\117\x54\117"), array("\57\52\40\x74\x65\163\164\x4d\141\164\143\150\x49\x73\113\x65\171\167\157\x72\144\40\x2a\x2f", "\x54\x5f\115\101\x54\103\x48"), array("\x2f\52\40\x74\x65\163\164\x4d\x61\x74\143\x68\x44\x65\x66\x61\165\154\164\x49\x73\113\145\x79\167\157\162\x64\40\x2a\57", "\x54\x5f\x4d\101\x54\x43\x48\137\104\x45\x46\x41\125\x4c\x54"), array("\57\x2a\x20\164\x65\x73\164\106\x6e\111\163\113\x65\x79\x77\x6f\x72\144\40\x2a\x2f", "\124\x5f\x46\116"), array("\57\52\x20\x74\x65\163\x74\x59\151\x65\154\x64\111\x73\113\x65\x79\x77\157\x72\x64\40\x2a\x2f", "\124\x5f\131\x49\x45\114\x44"), array("\57\x2a\x20\164\x65\x73\164\x59\151\x65\x6c\144\106\x72\x6f\155\x49\x73\113\x65\171\167\157\x72\144\x20\x2a\x2f", "\x54\137\x59\x49\105\114\x44\x5f\106\122\117\x4d"), array("\x2f\52\40\x74\145\163\x74\x44\x65\x63\154\141\x72\145\111\163\113\x65\x79\x77\157\162\x64\40\x2a\57", "\124\x5f\x44\x45\103\x4c\x41\x52\105"), array("\x2f\52\40\164\x65\163\x74\x45\x6e\x64\104\x65\x63\x6c\x61\162\x65\x49\x73\x4b\145\x79\x77\157\162\x64\x20\x2a\57", "\124\x5f\105\116\104\104\105\x43\114\x41\x52\x45"), array("\x2f\52\x20\x74\145\x73\164\101\156\144\x49\163\x4b\145\171\167\157\x72\144\40\52\57", "\124\x5f\x4c\117\x47\x49\x43\101\114\137\101\x4e\104"), array("\x2f\52\40\164\145\163\164\117\162\x49\163\x4b\145\171\167\157\162\x64\40\x2a\57", "\x54\137\x4c\117\x47\x49\x43\101\x4c\x5f\117\x52"), array("\57\x2a\40\x74\x65\x73\x74\x58\157\x72\x49\163\x4b\145\x79\167\x6f\x72\144\x20\52\x2f", "\124\x5f\x4c\x4f\107\111\x43\x41\x4c\x5f\130\x4f\122"), array("\x2f\x2a\x20\164\x65\x73\x74\101\x6e\x6f\156\171\x6d\157\x75\163\103\x6c\141\163\x73\x49\x73\x4b\x65\171\167\157\162\x64\40\52\x2f", "\124\137\101\116\x4f\x4e\x5f\x43\x4c\101\x53\x53"), array("\x2f\52\40\x74\x65\163\164\x45\x78\x74\x65\x6e\x64\163\111\156\x41\156\157\x6e\171\155\157\x75\x73\x43\x6c\x61\x73\x73\111\x73\113\x65\x79\x77\x6f\162\144\x20\52\x2f", "\124\137\x45\x58\124\105\116\104\x53"), array("\57\52\x20\164\x65\163\164\111\155\x70\x6c\145\155\145\x6e\164\163\x49\156\x41\x6e\x6f\156\171\x6d\157\x75\x73\103\154\141\x73\x73\x49\x73\113\145\x79\167\157\x72\x64\40\x2a\x2f", "\124\137\111\115\x50\x4c\x45\x4d\x45\116\x54\123"), array("\x2f\x2a\x20\164\x65\x73\164\103\154\141\x73\163\x49\156\x73\164\x61\156\x74\151\141\164\x69\157\156\x50\x61\162\145\x6e\x74\111\x73\x4b\145\171\x77\157\x72\144\40\x2a\x2f", "\x54\x5f\x50\x41\x52\x45\116\124"), array("\57\x2a\40\164\x65\x73\164\103\x6c\x61\163\x73\111\x6e\163\164\141\x6e\164\x69\x61\x74\x69\x6f\x6e\x53\145\x6c\x66\111\163\x4b\x65\171\x77\x6f\x72\144\x20\x2a\57", "\124\x5f\123\x45\x4c\x46"), array("\57\x2a\x20\164\x65\163\164\103\154\x61\163\163\111\156\163\x74\141\x6e\x74\x69\141\x74\x69\157\156\123\x74\141\164\x69\143\111\x73\x4b\145\171\167\x6f\162\x64\40\52\x2f", "\124\137\123\x54\x41\x54\111\x43"), array("\x2f\x2a\x20\x74\145\163\x74\116\141\x6d\x65\x73\x70\141\x63\145\x49\x6e\x4e\141\155\x65\x49\x73\x4b\x65\x79\x77\x6f\162\x64\40\52\57", "\x54\x5f\x4e\x41\x4d\x45\x53\x50\101\x43\x45"), array("\57\52\40\x74\145\163\x74\123\164\141\164\151\x63\111\163\x4b\145\x79\167\157\x72\x64\x42\x65\146\x6f\162\x65\x43\154\157\163\x75\x72\145\40\52\57", "\124\137\123\124\101\124\x49\x43"), array("\x2f\x2a\40\x74\145\163\164\x53\164\x61\x74\151\x63\x49\163\113\x65\x79\167\x6f\x72\144\x57\150\145\x6e\x50\141\x72\141\x6d\124\x79\x70\145\40\52\x2f", "\124\x5f\x53\x54\x41\x54\111\103"), array("\57\x2a\x20\x74\145\163\x74\123\x74\141\164\x69\x63\111\163\113\x65\171\167\x6f\x72\144\x42\145\x66\157\162\145\101\x72\x72\x6f\x77\x20\52\x2f", "\x54\137\x53\x54\101\x54\111\103"), array("\x2f\52\x20\x74\145\x73\164\123\164\141\164\151\143\x49\x73\x4b\x65\x79\167\157\x72\x64\127\150\145\156\x52\x65\164\165\162\x6e\x54\x79\160\145\40\x2a\x2f", "\124\137\123\x54\x41\x54\x49\103"), array("\x2f\x2a\40\164\x65\163\164\106\141\x6c\x73\x65\x49\163\x4b\x65\171\x77\157\162\x64\x41\163\120\141\x72\x61\155\x54\x79\160\145\x20\x2a\x2f", "\x54\x5f\x46\101\114\123\105"), array("\57\52\x20\164\145\163\x74\x54\x72\x75\145\x49\x73\x4b\x65\x79\167\157\162\x64\x41\163\x50\x61\x72\141\155\x54\171\160\145\x20\x2a\x2f", "\124\x5f\124\x52\125\105"), array("\x2f\x2a\40\x74\145\x73\164\x4e\x75\154\154\111\x73\x4b\x65\x79\167\x6f\x72\144\101\x73\120\x61\x72\141\155\124\x79\x70\145\x20\52\x2f", "\124\137\x4e\x55\114\x4c"), array("\x2f\x2a\x20\164\145\163\164\x46\x61\x6c\x73\x65\x49\163\113\x65\x79\x77\x6f\x72\144\x41\x73\x52\x65\164\x75\162\x6e\x54\171\160\x65\40\x2a\57", "\x54\x5f\x46\101\x4c\123\105"), array("\57\x2a\x20\x74\x65\163\x74\x54\162\x75\145\x49\163\x4b\x65\x79\167\157\162\144\101\x73\x52\x65\x74\x75\x72\156\124\x79\x70\x65\40\x2a\57", "\124\137\x54\122\125\105"), array("\x2f\x2a\x20\x74\x65\163\164\x4e\x75\154\154\111\x73\x4b\145\x79\167\157\162\144\101\x73\x52\145\x74\165\x72\x6e\x54\x79\x70\x65\x20\52\x2f", "\124\137\x4e\125\114\114"), array("\57\52\40\164\145\x73\164\x46\x61\x6c\163\145\x49\163\x4b\145\x79\167\x6f\162\144\111\x6e\103\157\x6d\x70\x61\x72\151\163\x6f\156\x20\52\x2f", "\124\137\x46\101\x4c\123\x45"), array("\x2f\52\x20\164\145\163\164\124\162\165\145\x49\x73\113\145\171\167\157\162\144\111\156\x43\157\155\x70\x61\162\151\x73\157\x6e\40\x2a\57", "\124\137\x54\122\125\105"), array("\57\x2a\40\164\145\x73\x74\x4e\x75\154\x6c\111\163\113\x65\171\167\x6f\x72\144\111\x6e\x43\x6f\x6d\160\x61\x72\151\163\157\156\x20\x2a\x2f", "\x54\x5f\116\125\114\x4c")); } }

Function Calls

None

Variables

None

Stats

MD5 97315576cd2a5ae5a6c998105fad430d
Eval Count 0
Decode Time 136 ms