[ Index ] |
|
Code source de Claroline 188 |
1 //<script type='text/javascript'> 2 3 function array_delete( tbl, item ) 4 { 5 var temp = new Array(); 6 7 for( i = 0; i < tbl.length; i++) 8 { 9 if( tbl[i] != item ) 10 { 11 temp.push( tbl[i] ); 12 } 13 } 14 15 return temp; 16 } 17 18 function in_array( tbl, item ) 19 { 20 for( i = 0; i < tbl.length; i++) 21 { 22 if( tbl[i] == item ) 23 { 24 return true; 25 } 26 } 27 28 return false; 29 } 30 31 function array_dump(tbl) 32 { 33 for(i=0;i<tbl.length;i++) 34 { 35 print('debug',tbl[i]+"<br>\n"); 36 } 37 } 38 //</script>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Thu Nov 29 14:38:42 2007 | par Balluche grâce à PHPXref 0.7 |
![]() |