Quick actions

cmd+k|ctrl+k

Navigation

Languages

正規表現チェック

Snippet info

Language

Php

Visibility

public

Author

yasumasa-ohoka

Created

2019-02-05T01:15:21Z

Updated

2019-02-05T01:17:59Z

<?php
$value = 'mysqlerror test `1a` dayo `1b`';
$matches = null;
preg_match('/mysqlerror test `(\D+)` dayo `(\D+)`/', $value, $matches);
print_r($matches); 
INFO