-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Regex Optimization
This page will keep track of all Regex improvements. Once the code improvement has been added, just mark it as Added.
[b][color=red]NOT ADDED[/color][/b] [b]system/helpers/string_helper.php - line 70[/b]
[b][color=red]APPROVED BY:[/color][/b]
[b][color=red]BEFORE:[/color][/b] 10000 iterations take about [b]0.0873 seconds[/b] [code] function reduce_double_slashes($str) { return preg_replace("#([^:])//+#", "\1/", $str); } [/code]
[b][color=green]AFTER:[/color][/b] 10000 iterations take about [b]0.0429 seconds[/b] [code] function reduce_double_slashes($str) { return preg_replace('#(?<!:)//+#', '/', $str); // twice as fast, woot! } [/code]
[b]Just copy and paste the template below to add your own addition.[/b]
[b][color=red]NOT ADDED[/color][/b] [b]system/REPLACE/REPLACE.php - line ??[/b]
[b][color=red]APPROVED BY:[/color][/b]
[b][color=red]BEFORE:[/color][/b] [code] //put the original code here [/code]
[b][color=green]AFTER:[/color][/b] [code] //put the replaced code here [/code]