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.
是否可以使用@include()包含非刀片文件?我试过这个@include('cms/include.json.php'),但它不起作用。
@include()
@include('cms/include.json.php')
谢谢你。
如果我理解正确,Laravel 只是将它解析为普通的 php 代码,所以在这种情况下,在一个非 blad 文件上使用<?php include("filepath"); ?>应该可以工作!
<?php include("filepath"); ?>
仅仅因为 laravel 使用刀片并不意味着你不能像平常一样使用 php。
我很确定它不起作用,因为这行代码可能引发的任何错误都被@语法抑制了。要查看到底发生了什么,您应该删除错误抑制并E_ALL启用错误报告。
@
E_ALL
最有可能是由于指定的目录不正确