Pchp.Library.PCRE.preg_match_all C# (CSharp) Method

preg_match_all() private method

private preg_match_all ( Context ctx, string pattern, string subject ) : int
ctx Pchp.Core.Context
pattern string
subject string
return int
        public static int preg_match_all(Context ctx, string pattern, string subject)
        {
            PhpArray matches;
            return preg_match_all(ctx, pattern, subject, out matches);
        }

Same methods

PCRE::preg_match_all ( Context ctx, string pattern, string subject, PhpArray &matches, int flags = PREG_PATTERN_ORDER, int offset ) : int