What's new

Welcome to xCrud Community - Data Management and extended PHP CRUD

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?

Deprecated: Invalid characters passed for attempted conversion

DaDo

Administrator
Staff member
Joined
Dec 1, 2021
Messages
108
Reaction score
24
Points
18
If anyone have problem to xcrud and have this deprecated error in php v7.2+
you can simple find
PHP:
10 , 36
//replace
16 , 36

//for example
 self::$sess_id = base_convert(str_replace(' ', '', microtime()) . rand(), 10, 36);
//replace
 self::$sess_id = base_convert(str_replace(' ', '', microtime()) . rand(), 16, 36);
 
Top Bottom