Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的实际 Web 应用程序中集成 TypoScript 之类的东西(它不是基于 Typo3 的)
我想在文件中使用打字稿,然后解析器会返回给我一个配置数组
有可能还是 PHP 有类似的东西?
检查TYPO3\CMS\Core\TypoScript\TemplateService,但我担心单独使用它会相当困难。
TYPO3\CMS\Core\TypoScript\TemplateService
您将在 找到课程typo3/sysext/core/Classes/TypoScript/TemplateService.php。
typo3/sysext/core/Classes/TypoScript/TemplateService.php
看看t3lib/class.t3lib_tsparser.php类。也许您将能够根据您的项目对其进行调整。特别是它parse()和parseSub()方法应该是你感兴趣的。
parse()
parseSub()