私はこのコードを持ってするpreg_matchてはいけません。区切り文字は英数字またはバックスラッシュことと
$string1 = "My name is 'Kate' and im fine";
$pattern = "My name is '(.*)' and im fine";
preg_match($pattern , $string1, $matches);
echo $matches[1];
とイムが実行したとき、それは、このエラーが返されます。
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash
これはほぼ確実に同じエラーが表示されるためです。 – bluebinary