<?php $string = 'this is test'; preg_match('/(?P<test>.+)/', $string, $matches); // basic syntax var_dump($matches['test']); preg_match('/(?<test>.+)/', $string, $matches); // alternative var_dump($matches['test']); preg_match("/(?'test'.+)/", $string, $matches); // alternative var_dump($matches['test']);
You have javascript disabled. You will not be able to edit any code.