前提・実現したいこと
PHPの画像認証ライブラリ「Securimage」を使っています
securimage.phpの該当のソースコードをいじることによって、
色を変えたりできるのですが、
変数の内容を出力して設定することができません
$a="#e6e6fa";
public $image_bg_color = $a;
上記のように書いても設定できません
変数を出力するにはどうしたらいいのでしょうか?
該当のソースコード
php
1 /** 2 * The background color of the captcha 3 * @var Securimage_Color|string 4 */ 5 public $image_bg_color = '#000000'; 6 7 /** 8 * The color of the captcha text 9 * @var Securimage_Color|string 10 */ 11 public $text_color = '#FFFFFF'; 12 13 /** 14 * The color of the lines over the captcha 15 * @var Securimage_Color|string 16 */ 17 public $line_color = '#707070'; 18 19 /** 20 * The color of the noise that is drawn 21 * @var Securimage_Color|string 22 */ 23 public $noise_color = '#707070'; 24 25 /**
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/03/31 00:23
2021/03/31 01:18