这个:
{{ $tenant->name }}
翻译为:
<?PHP echo e($tenant->name); ?>
我不明白e()方法的用途是什么?我也无法在PHP.net上找到它所以我猜它是laravel 5本身的一部分.但是它做了什么?
E()
e函数在给定字符串上运行htmlentities:
echo e('<html>foo</html>'); // <html>foo</html>
http://laravel.com/docs/5.1/helpers#method-e