下面的代码解释了如何使用 unset 函数删除元素,我使用了一个字符串并将该字符串转换为数组,现在尝试删除第一个和最后一个元素。但元素不会被删除。帮助将不胜感激
<?php
$string="Cupid"; //orginal string
$stringmod= str_split($string); //converted the string to an array
$length= count($stringmod); //length of the string
for($i=0; $i<$length; $i++)
{
if($i == 0 || $i == $length-1) //condition to be executed
{
unset($stringmod[$i]); //delete elements
}
}
print_r($stringmod);
?>
慕勒3428872
慕的地8271018