lolipopでPHPを使うときのメモ
phpのバージョンは8.2(CGI版)

.htaccessに
AddHandler php8.2-script html
という一文を追加

以下php.iniの設定
mbstring 関連
mbstring.language japanese
mbstring.encoding_translation On

session 関連
session.auto_start Off
session.use_trans_sid 0
session.use_only_cookies On

opcache 関連
opcache.enable On
opcache.enable_cli Off

xdebug 関連
xdebugを利用可能にする Off

そのほか
default_charset UTF-8
output_handler 未設定
output_buffering 0
short_open_tag Off
allow_url_fopen On
allow_url_include Off
upload_max_filesize 20M
display_errors On
error_reporting E_ALL & ~E_NOTICE & ~E_DEPRICATED & ~E_STRICT
variables_order EGPCS
auto_prepend_file (空欄)
php_value, php_flagを利用可能にする Off