php 字符串反转、数组反转

php 字符串反转

<?php
$str='hello world !';
$newStr=strrev($str);

//output
// ! dlrow olleh

php数组反转

<?php
$arr=array('a','b','c');
$newArr=array_reverse($arr);
print_r($newArr);

//output
/*
Array(
   [0]=>'c',
   [1]=>'b',
   [2]=>'a'
)
*/



你可能感兴趣的:(php 字符串反转、数组反转)