<?php $text = 'bla-bla-bla';$unused_image = [];$text = preg_replace_callback("#\w#is", function($match) use(&$unused_image){ $unused_image[] = $match[0]; return '';}, $text); var_dump($text);print_r($unused_image);
Standard input is empty
string(2) "--" Array ( [0] => b [1] => l [2] => a [3] => b [4] => l [5] => a [6] => b [7] => l [8] => a )
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!