Remplace split qui est déprécié par explode
This commit is contained in:
parent
edcd8b851a
commit
5facffc008
1 changed files with 1 additions and 1 deletions
|
|
@ -30,7 +30,7 @@
|
|||
if ( strlen($array[$i]['acode']) >0 ) {
|
||||
if (strpos($array[$i]['acode'], ",") >0 ) {
|
||||
|
||||
$det_qcode= split(",", $array[$i]['acode']);
|
||||
$det_qcode= explode(",", $array[$i]['acode']);
|
||||
$sep="";
|
||||
$max=(count($det_qcode)>$limite)?$limite:count($det_qcode);
|
||||
for ($e=0;$e<$max;$e++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue