array_flip() example : array_flip « Data Structure « PHP
- PHP
- Data Structure
- array_flip
array_flip() example
<?
$trans = array(1, "hello", 1, "world", "hello");
$trans = array_flip ($trans);
$original = strtr ($str, $trans);
?>
Related examples in the same category