Я создаю пользовательскую библиотеку в codeigniter, я хочу передать параметр в конструкторе.Подойдет любое решение!
function __construct( $iteration_count_log2, $portable_hashes )
{
$this->itoa64 =
'./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
if ($iteration_count_log2 < 4 || $iteration_count_log2 > 31)
$iteration_count_log2 = 8;
$this->iteration_count_log2 = $iteration_count_log2;
$this->portable_hashes = $portable_hashes;
$this->random_state = microtime() . uniqid(rand(), TRUE); // removed getmypid() for compatibility reasons
}
Вот код для загрузки библиотеки
public function __construct() {
parent::__construct();
$this->load->library('PasswordHash');
}