Home  >  Article  >  Backend Development  >  How to remove the last string from an array in php

How to remove the last string from an array in php

藏色散人
藏色散人Original
2021-03-31 09:08:481707browse

php method to remove the last string of an array: first create a PHP sample file; then define an array; finally remove the last string of the array through the "array_pop($user);" method.

How to remove the last string from an array in php

The operating environment of this article: Windows 7 system, PHP version 7.1, DELL G3 computer

Use array_pop to delete the last element of the array, for example:

$user=array('apple','banana','orange');
$result=array_pop($user);
print_r($result);
print_r($user);

The result will be:

orange
array('apple','banana')

[Recommended learning: PHP video tutorial]

The above is the detailed content of How to remove the last string from an array in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn