there is an array
$arr = array( '320', '256', '192', '160', '128', '64', '32', ); and the variable $b = '192'; (the value is always different) so, how to remove keys from the array up to 192, in this case 320 and 256
there is an array
$arr = array( '320', '256', '192', '160', '128', '64', '32', ); and the variable $b = '192'; (the value is always different) so, how to remove keys from the array up to 192, in this case 320 and 256
Source: https://ru.stackoverflow.com/questions/560750/
All Articles