<?php $str = '123.23.23.4/17,'; $str .= '123.23.23.4/23,'; $str .= '123.23.23.4/8,'; $str .= '123.23.23.4/18'; $lines = explode(',', $str); foreach($lines as $line){ $parts = explode('/', $line); var_dump($parts); }
You have javascript disabled. You will not be able to edit any code.