Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /usr/local/src/php7/php-7.0.5/ext/reflection/tests/ |
Current File : //usr/local/src/php7/php-7.0.5/ext/reflection/tests/bug64936.phpt |
--TEST-- ReflectionMethod::getDocComment() uses left over doc comment from previous scanner run --INI-- opcache.save_comments=1 --SKIPIF-- <?php if (!extension_loaded('reflection') || !extension_loaded('tokenizer')) print 'skip missing reflection of tokernizer extension'; ?> --FILE-- <?php function strip_doc_comment($c) { if (!strlen($c) || $c === false) return $c; return trim(substr($c, 3, -2)); } token_get_all("<?php\n/**\n * Foo\n */"); // doc_comment compiler global now contains this Foo comment eval('class A { }'); // Could also be an include of a file containing similar $ra = new ReflectionClass('A'); var_dump(strip_doc_comment($ra->getDocComment())); token_get_all("<?php\n/**\n * Foo\n */"); // doc_comment compiler global now contains this Foo comment include('bug64936.inc'); $rb = new ReflectionClass('B'); var_dump(strip_doc_comment($rb->getDocComment())); ?> ===DONE=== --EXPECT-- bool(false) bool(false) ===DONE===
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare