File "test_remove01.php"
Full Path: /home/analogde/www/Administratif/FTP/Monsta-FTP-master/test_remove01.php
File size: 154 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
$array = ["string1", "string2", "string3", "string4", "string5"];
$key = array_search('string3',$array);
unset($array[$key]);
print_r($array);
?>