10 lines
268 B
PHP
10 lines
268 B
PHP
<?php
|
|
error_reporting(E_ALL);
|
|
ini_set('display_errors', true);
|
|
require_once('php/inc_functions.php');
|
|
|
|
$test=conf_getFiltreData(55,'rapp_chronoquestion','chk_col','9,3,6',0,1);
|
|
|
|
$array = explode(',', $test);
|
|
$keycheck =array_fill_keys($array,'1' );
|
|
print_r($keycheck); |