我在使用preg_match时遇到了一些问题,而不是选择1件事。它从第一个开始到最后一个结束。
preg_match('/@section\(\'(.*)\'\)(.*)@endsection/s', $content,$results
$内容:
@section('title')
Number 1
@endsection
@section('content')
Number 2
@endsection
但是当我使用preg_match时,结果就像:
Number 1
@endsection
@section('content')
Number 2