rryqszq4 / ngx-php

ngx-php - Embedded php7 or php8 scripting language for nginx module. Mainline development version of the ngx-php.
BSD 2-Clause "Simplified" License
646 stars 55 forks source link

[question] What is the difference with or without _block #161

Closed joanhey closed 1 year ago

joanhey commented 1 year ago

xxxx_by_php vs xxxx_by_php_block ?

joanhey commented 1 year ago

I answer myself.

xxx_by_php '
       #use single quotes
      echo "Hello";
';
xxx_by_php_block {
      #use Braces
     echo 'world';
};

So we can use single quotes inside xxx_block{}. I asked for that change, sorry :thinking: