如何解决将刀片语法转换为php的问题?如果刀片中的语句到PHP

时间:2019-06-29 21:56:17

标签: php laravel laravel-blade

我的资源\视图中的Blade语法支持我的代码,该代码可以正常工作,然后在php编写的storage \ framework \ views中有laravel框架自动编码的代码。

刀片

enter image description here

PHP

enter image description here

我期望从刀片语法中获得相同的结果,但是在转换为PHP时出现语法错误

1 个答案:

答案 0 :(得分:2)

使用Blade指令时会出现错误原因,不需要使用 ORG 256 Loop1: mov ah, 01h ; DOS.GetKeyboardCharacter int 21h ; -> AL cmp al, "*" ; Found end of input marker ? je Done cmp al, "A" jb Loop1 cmp al, "Z" ja Loop1 mov dl, al ; For now it's the first mov dh, al ; AND the last capital Loop2: mov ah, 01h ; DOS.GetKeyboardCharacter int 21h ; -> AL cmp al, "*" ; Found end of input marker ? je Show cmp al, "A" jb Loop2 cmp al, "Z" ja Loop2 mov dh, al ; This is the latest capital jmp Loop2 Show: mov ah, 02h ; DOS.DisplayCharacter int 21h ; -> (AL) mov dl, dh mov ah, 02h ; DOS.DisplayCharacter int 21h ; -> (AL) Done: mov ax, 4C00h ; DOS.TerminateWithReturnCode int 21h 来获取变量值,因此正确的语法是:

{{ }}

还有一件事情,@if ( Auth::guard("employee")->check() ) ... @endif 方法返回一个布尔值,因此您不能使用check()方法进行链接。所以你需要做的是

user()