You appear to be a bot. Output may be restricted
Description
Strip the lines from start to end
Taking into account that the array index starts from 0
Usage
oiksc_contents_strip( $contents_arr, $start, $end );
Parameters
- $contents_arr
- ( mixed ) required –
- $start
- ( mixed ) required –
- $end
- ( mixed ) required –
Returns
void
Source
File name: oik-shortcodes/admin/oik-files.php
Lines:
1 to 8 of 8
function oiksc_contents_strip( $contents_arr, $start, $end ) { //echo "Stripping $start to $end" . PHP_EOL; for ( $index = $start; $index<= $end; $index++ ) { $contents_arr[ $index-1 ] = ""; } //print_r( $contents_arr ); return( $contents_arr ); }