Changeset 34772
- Timestamp:
- 10/02/2015 01:50:04 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/utils.php
r34761 r34772 420 420 break; 421 421 case 'match_all': 422 preg_match_all( $pattern, $subject ); 422 $matches = array(); 423 preg_match_all( $pattern, $subject, $matches ); 423 424 break; 424 425 }
Note: See TracChangeset
for help on using the changeset viewer.