PHP 8.5.0 Alpha 1 available for testing

Voting

: zero plus seven?
(Example: nine)

The Note You're Voting On

info at sabastore dot net
9 years ago
note :: array_flip is a changer for key and value and a auto unique like array_unique :

<?php
/*
sabastore
*/
$intArray1 = array(-4,1,1,3);
print_r($intArray1);
$intArray1 = array_flip($intArray1);
print_r($intArray1);
?>

<< Back to user notes page

To Top