Skip to content

Instantly share code, notes, and snippets.

@Chemaclass
Created September 21, 2019 22:36
Show Gist options
  • Select an option

  • Save Chemaclass/22b5353b57c3c0aeeda880ee83166f3f to your computer and use it in GitHub Desktop.

Select an option

Save Chemaclass/22b5353b57c3c0aeeda880ee83166f3f to your computer and use it in GitHub Desktop.
Docu - Named Captures Support
<?php
mb_ereg('(?<word>\w+)', '国', $matches);
// => [0 => "国", 1 => "国", "word" => "国"];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment