Opened 14 years ago
Closed 14 years ago
#16684 closed enhancement (fixed)
PHP5 Performance improvement for wptexturize
Reported by: | solarissmoke | Owned by: | |
---|---|---|---|
Milestone: | 3.2 | Priority: | normal |
Severity: | normal | Version: | 3.1 |
Component: | Performance | Keywords: | php5 has-patch |
Focuses: | Cc: |
Description
Now that we have ditched PHP4 we can do foreach()
loops passing array elements by reference. Currently in wptexturize()
we make a copy of each array element from $textarr
and then write to a separate $output
variable. In PHP5 this is unnecessary as we can work directly on the elements of $textarr
.
I'm guessing this will need unit tests but it certainly should be more efficient.
Attachments (3)
Change History (9)
#1
@
14 years ago
- Component changed from General to Performance
- Type changed from defect (bug) to enhancement
#2
@
14 years ago
- Version set to 3.1
Note: See
TracTickets for help on using
tickets.
Improved version.