PHP Velho Oeste 2024

실행시 설정

이 함수의 작동은 php.ini 설정에 영향을 받습니다.

Blenc 설정 옵션
이름 기본값 가변성 변경점
blenc.key_file /usr/local/etc/blenckeys PHP_INI_ALL

위 설정 지시어에 대한 간단한 설명입니다.

blenc.key_file string

It's the location where BLENC can find the file containing a list of available decryption keys. This file must be readable by webserver.

add a note add a note

User Contributed Notes 1 note

up
2
jp [a.t] giot.net
10 years ago
When you add the blenc extension to your php installation, you should add in your php.ini :

; Blenc for windows
extension=php_blenc.dll
blenc.key_file = "c:\path\to\blenckeys"

a blank key file directive doesn't allow the blenc extension to decrypt the files (and also to add keys when encoding a file)
To Top